1. ホーム
  2. windows

[解決済み] PowerShellのコマンドラインからWindowsのバージョンを確認する方法

2022-03-02 18:08:16

質問

Windowsのバージョンを確認するにはどうしたらいいですか?

PowerShell 2.0を使用して試しています。

PS C:\> ver
The term 'ver' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify tha
t the path is correct and try again.
At line:1 char:4
+ ver <<<< 
    + CategoryInfo          : ObjectNotFound: (ver:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

どうすればいい?

どのように解決するのですか?

.NETのライブラリにアクセスできるので OSVersion プロパティの System.Environment クラスでこの情報を得ることができます。バージョン番号については Version プロパティがあります。

例えば

PS C:\> [System.Environment]::OSVersion.Version

Major  Minor  Build  Revision
-----  -----  -----  --------
6      1      7601   65536

Windows版の詳細はこちら こちら .