■ PowerShell学習 #16:PowerShellのバージョン確認方法

PowerShellのバージョンを確認するには?

■ 方法 1
$PSVersionTable と入力し "PSVersion" の値を確認する。
例:
PS C:\Users\user> $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
上記の場合、PowerShellのバージョンは "5.1.18362.752"

■ 方法 2
$PSVersionTable.PSVesion と入力する。
例:
PS C:\Users\user> $psversiontable.psversion

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


PowerShell学習

0 件のコメント:

その他の記事