How To Check Your Current PowerShell Version

One of the things you will probably run into while using PowerShell is to determine what version you are using. There are several different ways you can determine the version. Below are a couple of the most popular ways.

Method One: $PSVersionTable

Open a PowerShell command window and enter the below code statement.

$PSVersionTable

Below is an example of a result from $PSVersionTable

Method Two: Get-Host

Open a PowerShell command window and enter the below code statement.

Get-Host

Below is an example of a result from Get-Host.