How to check PowerShell version


For Windows 10/11:

  1. Open PowerShell, by typing Windows PowerShell in Search,
  2. Now run the command: Get-Host | Select-Object Version
  3. You should get the version of PowerShell as a result.

For macOS:

  1. Open Terminal App,
  2. Now switch to Powershell by typing: PWSH
  3. Type the command Get-Host | Select-Object Version
  4. You should get the version of PowerShell as a result.

    Example:
    % PWSH
    PowerShell 7.2.1
    Copyright (c) Microsoft Corporation.
    
    https://aka.ms/powershell
    Type 'help' to get help.
Check PowerShell version

Using $PSVersionTable

PS /Users/code2care> $PSVersionTable

Name                           Value
----                           -----
PSVersion                      7.2.1
PSEdition                      Core
GitCommitId                    7.2.1
OS                             Darwin 21.4.0 Darwin Kernel Version 21.4.0: Mon…
Platform                       Unix
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
WSManStackVersion              3.0


















Copyright Β© Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap