How can I find the version of PowerShell installed on my Windows 11 PC?

krishna veni 20 Reputation points
2025-08-18T10:36:10.47+00:00

You can check the installed PowerShell version by running the following command in your PowerShell window:

$PSVersionTable.PSVersion

This will display the version number (Major, Minor, Build, Revision) of PowerShell currently installed on your system.

Windows development | Internet Information Services
0 comments No comments
{count} votes

Accepted answer
  1. Tom Tran (WICLOUD CORPORATION) 525 Reputation points Microsoft External Staff
    2025-08-19T02:21:43.1633333+00:00

    Hi krishna veni,
    You’re absolutely correct! Running:

    $PSVersionTable.PSVersion
    

    is the standard way to check the installed PowerShell version. It will return the Major, Minor, Build, and Revision numbers.

    A few extra tips you might find helpful:

    • Where to run it: Open PowerShell or Windows Terminal, then enter the command.
    • Alternative method:
    Get-Host | Select-Object Version
    
    • PowerShell editions:
      • Windows PowerShell (usually version 5.1) comes preinstalled on Windows 11.
      • PowerShell (Core) (7.x and above) is cross-platform and installed separately.
    • Reference: Check your PowerShell version

    Hope this helps! If this answers your question, feel free to interact with the answer so others can benefit too.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.