Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?

share|improve this question

10 Answers

up vote 282 down vote accepted

UPDATE: $host.version is not reliable - it reflects the version of the host only, not the engine. PowerGUI, PowerShellPLUS etc. are all hosting applications and they will set the host's version to reflect their product version, which is entirely correct. Use $psversiontable.psversion to determine the engine version. If the variable does not exist, it is safe to assume the engine is v1.0.

--

share|improve this answer
1  
I wouldn't rely on $Host.Version, the registry is better. I'm on XP and have only PS1 installed, as shown in the registry and file system, and when I do $Host.Version I get this: Major Minor Build Revision ----- ----- ----- -------- 2 0 -1 -1 – Bratch Mar 24 '10 at 20:18
9  
Hmm... scratch that last comment. It seems that PS2 is installed, but that some features are unaccountably unavailable, and for some reason the installation directory is named '1.0'. Thanks Microsoft. – Daniel Cassidy May 12 '10 at 15:43
22  
Just typing "$host" and enter works as well. No need to do $Host.Version (for the lazy) – Shane Castle Mar 7 '11 at 21:19
12  
$PSVersionTable is more reliable and returns $PSVersion. You can also use $PSVersionTable.PSVersion. Even if you are connected remotely to the machine running different version (invoke-command -computername myRemotePC -Credential foo {$host}), it looks like $host will just show the lowest version they agreed upon for serializing. While $PSVersionTable will show the true version. Hope it would help someone.. – vulcan raven Oct 23 '12 at 4:27
6  
Seems $host.Version isn't a good choice... If you remote to a machine running PowerShell 3, you get back 1.0, as the RemotingHost seems to be v1. Using $PSVersionTable correctly returns 3. – Danny Tuppeny Oct 30 '12 at 9:30
show 4 more comments

I would use either Get-Host or $PSVersionTable. As Andy Schneider points out, $PSVersionTable works with version 2 and with version 3.

get-host

Name             : ConsoleHost
Version          : 2.0
InstanceId       : d730016e-2875-4b57-9cd6-d32c8b71e18a
UI               : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture   : en-GB
CurrentUICulture : en-US
PrivateData      : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy
IsRunspacePushed : False
Runspace         : System.Management.Automation.Runspaces.LocalRunspace

$PSVersionTable

Name                           Value
----                           -----
CLRVersion                     2.0.50727.4200
BuildVersion                   6.0.6002.18111
PSVersion                      2.0
WSManStackVersion              2.0
PSCompatibleVersions           {1.0, 2.0}
SerializationVersion           1.1.0.1
PSRemotingProtocolVersion      2.1
share|improve this answer
2  
thank you! NB: On my XP where I manually upgraded from v1 Powershell, the actual folder and registry paths (misleadingly?!) reference v1 NOT v2. This is as others here specify, but it was the reason why I was so worried whether I had installed it. My path is ; C:\WINDOWS\system32\windowspowershell\v1.0 – AnneTheAgile Mar 7 '12 at 20:44
+1: Worked for me. Ta. – Umber Ferrule Sep 14 '12 at 9:59
If $psversiontable does not exist, it's entirely safe to assume you're on v1.0 - and hey presto, that also answers your question. $host.version is not reliable - for example in powergui, it returns the powergui host version which is not the same as the powershell engine version (which is what is desired.) – x0n Apr 17 at 20:45

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.

1 >  $psversiontable

Name                           Value                                           
----                           -----                                           
CLRVersion                     2.0.50727.4927                                  
BuildVersion                   6.1.7600.16385                                  
PSVersion                      2.0                                             
WSManStackVersion              2.0                                             
PSCompatibleVersions           {1.0, 2.0}                                      
SerializationVersion           1.1.0.1                                         
PSRemotingProtocolVersion      2.1
share|improve this answer

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:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\PowerShellEngine

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

$isV2 = test-path variable:\psversiontable

The same site also gives a function to return the version:

function Get-PSVersion { 
    if (test-path variable:psversiontable) {$psversiontable.psversion} else {[version]"1.0.0.0"} 
}
share|improve this answer
Useful because on a Windows 2003 server I couldn't find the start menu entry for PowerShell (it was there but not obvious), but the registry key answered my question. – Holistic Developer Oct 11 '12 at 19:41

To check if PowerShell is installed use:

HKLM\Software\Microsoft\PowerShell\1 Install ( = 1 )

To check if RC2 or RTM is installed use:

HKLM\Software\Microsoft\PowerShell\1 PID (=89393-100-0001260-00301) -- For RC2
HKLM\Software\Microsoft\PowerShell\1 PID (=89393-100-0001260-04309) -- For RTM

Source: this website.

share|improve this answer
Which is the best manner for check if PowerShell is installed without use ps1 script ? Maybe using C# code, it would be useful full source code sample. – Kiquenet Apr 9 at 10:57

You can also call the "host" command from the powershell commandline. It should give you the value of the $host variable.

share|improve this answer

In Vista, I found it in the registry at:

HKLM\Software\Microsoft\PowerShell\1\PowerShellEngine\PowerShellVersion
share|improve this answer

Try it with following command:

Get-Host

Seen here

share|improve this answer

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!" }

share|improve this answer

I know it's late in the day to be answering this now, but $host.version is just plain wrong/unreliable. This gives you the version of the hosting executable (powershell.exe, powergui.exe, powershell_ise.exe, powershellplus.exe etc) and not the version of the engine itself.

The engine version is contained in $psversiontable.psversion. For PowerShell 1.0, this variable does not exist, so obviously if this variable is not available it is entirely safe to assume the engine is 1.0, obviously.

share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.