Windows10でPowerShellのバージョンを調べる方法

環境
Windows 10 home 64bit

操作方法
1.「スタート」を右クリックします。

2.「Windows PowerShell(管理者)(A)」をクリックします。

3.ユーザーアカウント制御が表示されます。「はい」を選択します

4.以下のコマンドを実行します
方法1
書式
$PSVersionTable
実行結果

PS C:\WINDOWS\system32> $PSVersionTable

Name                           Value
----                           -----
PSVersion                      5.1.19041.1682
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.19041.1682
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1

5.PowerShellのバージョン番号のみを確認します

PS C:\WINDOWS\system32> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      19041  1682

 

Windows10

Posted by arkgame