0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PowerShellシステム要件、バージョン情報メモ

Last updated at Posted at 2022-01-26

はじめに

PowerShellのシステム要件やバージョン情報などを調べていたメモの体裁がある程度整ったので公開します。

Powershellのシステム要件

PowerShellからのバージョン確認

Windowsのバージョン情報

  • 参考:実行しているWindowsバージョンは何ですか?
    • chcp 65001; systeminfo |findstr /B /C:"OS Name" /B /C:"OS Version"
    • systeminfoの出力が環境依存するので、要改善。
    • chcpで切り替えると画面がクリアされるのでイマイチ。
    • slmgr /dlvは表示がわかりにくい。

まとめてバージョン確認

PS > (gci function:ver).definition
(systeminfo | ?{$_.Contains("OS")})[0,1]; ($PSVersionTable | Out-String -Stream)[3].trim() -replace ' +',":`t`t"
PS > ver
OS 名:                  Microsoft Windows 10 Home
OS バージョン:          10.0.19044 N/A ビルド 19044
PSVersion:              5.1.19041.1320

コマンドの実行結果の中から必要な行だけ配列要素として取り出して繋げると、コンパクトでそこそこ見やすくなります。

その他

レジストリから取得

PS > (gi 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\').GetValue("ProductName")
Windows 10 Home
PS > (gi 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\').GetValue("DisplayVersion")
21H2

wmic利用(非推奨)

cmd利用

  • (cmd /c ver)[1]

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?