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 \4 \5
If you would like to download the most current 2016 build (5.0), you can get it directly from Microsoft HERE.
Thanks to several other sites for assistance but mostly http://stackoverflow.com/questions/1825585/determine-installed-powershell-version
0 Comments