HomePowerShellHow to find the Installed version of the PowerShell ?

How to find the Installed version of the PowerShell ?

If you want to find the version of the PowerShell that is installed on the PC , you can use the below command which provides the engine version.

$PSVersionTable.PSVersion

How to find the Installed version of the PowerShell ?

The $PSVersionTable was introduced in the  PowerShell version 2.0 and provides you information like

  • PSVersion
  • WSManStackVersion
  • SerializationVersion
  • CLRVersion
  • BuildVersion
  • PSCompatibleVersions
  • PSRemotingProtocolVersion

Leave a Reply

You May Also Like

Are you looking at importing DscResource with Relative Paths when working in PowerShell? If so, let’s have a look at...
In this post, let’s learn about the Powershell error “The file <Filename> is not digitally signed. You cannot run this...
There are many ways in which you can run your PowerShell Script. In this post , we will how to...