SOLVED: How To Determine What Version of PowerShell You Have Installed

If you need to know what version of PowerShell you have installed there are many ways to figure it out: In PowerShell, type: get-host In PowerShell, type: get-host | select-object version In PowerShell, type: ConsoleHost deprecated In PowerShell, type: $PSVersionTable In PowerShell, type: Get-PSSnapin Check the registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1 \2 \3 Read more…