How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
You can verify that Windows PowerShell version installed by completing the following check:
In the Windows PowerShell console, type the following command at the command prompt and then press ENTER:
Get-Host | Select-Object Version
You will see output that looks like this:
Version
-------
3.0
http://www.myerrorsandmysolutions.com/how-to-verify-the-windows-powershell-version-installed/