PowerShell - Determine installed PowerShell version

PowerShell - Determine installed PowerShell version

PowerShell

Determining the installed PowerShell version on your machine is pretty straightforward. Though there is a few gotcha's so let's go over how to get your currently installed PowerShell version.

Solution:

Use $PSVersionTable.PSVersion to determine the engine version. If the variable does not exist, you can assume the installed version of PowerShell is version 1.0.

PS C:\> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
4      0      -1     -1


Back to The Programmer Blog