Determine installed PowerShell version

前端 未结 19 2391
半阙折子戏
半阙折子戏 2020-11-22 09:40

How can I determine what version of PowerShell is installed on a computer, and indeed if it is installed at all?

19条回答
  •  抹茶落季
    2020-11-22 10:18

    You can verify that Windows PowerShell version installed by completing the following check:

    1. Click Start, click All Programs, click Accessories, click Windows PowerShell, and then click Windows PowerShell.
    2. In the Windows PowerShell console, type the following command at the command prompt and then press ENTER:

      Get-Host | Select-Object Version
      

    You will see output that looks like this:

    Version
    -------
    3.0
    

    http://www.myerrorsandmysolutions.com/how-to-verify-the-windows-powershell-version-installed/

提交回复
热议问题