How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?
|
|
|
UPDATE: -- |
|||||||||||||||||||||
|
|
I would use either Get-Host or $PSVersionTable. As Andy Schneider points out, $PSVersionTable works with version 2 and with version 3.
|
|||||||||
|
|
You can look at the built in variable, $psversiontable. If it doesn't exist, you have V1. If it does exist, it will give you all the info you need.
|
|||
|
|
|
To determine if PowerShell is installed, you can check the registry, as detailed in the following post : To determine the version of PowerShell that is installed, you can check the follow registry key:
To determine the version of PowerShell that is installed from a .ps1 script, you can use the following one-liner, as detailed on PowerShell.com
The same site also gives a function to return the version:
|
|||
|
|
To check if PowerShell is installed use:
To check if RC2 or RTM is installed use:
Source: this website. |
||||
|
|
You can also call the "host" command from the powershell commandline. It should give you the value of the $host variable. |
|||
|
|
|
In Vista, I found it in the registry at:
|
||||
|
|
|
If you just want to check to make sure you have a major version number you can get just that number in the variable $host.version.major. if (2 -ge $host.version.major) { "Make it so!" } else { "Full Stop!" } |
|||
|
|
|
I know it's late in the day to be answering this now, but The engine version is contained in |
|||
|
|
protected by Bo Persson Jan 24 '12 at 17:38
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
