How to Identify installed PowerShell version


PowerShell Version Details
PowerShell Version Details

In order to know the installed version of PowerShell on your Windows system you can follow the below steps,

  1. Open PowerShell, by typing powershell in Run,
  2. Type $PSVersionTable,
    PS C:\Users\code2Care> $PSVersionTable
    
    Name                           Value
    ----                           -----
    PSVersion                      5.1.18362.752
    PSEdition                      Desktop
    PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
    BuildVersion                   10.0.18362.752
    CLRVersion                     4.0.30319.42000
    WSManStackVersion              3.0
    PSRemotingProtocolVersion      2.3
    SerializationVersion           1.1.0.1

If you want to know just the version in a more detailed manner you can try $PSVersionTable.PSVersion

PS C:\Users\code2Care> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      18362  752


















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