PowerShell PCのUUIDを確認する方法

環境
Windows10 Pro 20H2 64bit
PowerShell 5.1.19041.2673

操作方法
1.「スタート」を右クリックし「Windows ターミナル(管理者)をクリックします。

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

3.PowerShellを起動します。

4.以下のコマンドを実行します。
(Get-CimInstance -Class Win32_ComputerSystemProduct).UUID
結果

PS C:\WINDOWS\system32> (Get-CimInstance -Class Win32_ComputerSystemProduct).UUID
809E741E-58C5-E311-804E-B0ED45112087

5.PCのUUIDを確認します。

6.以下のコマンドでUUIDを確認します。
wmic csproduct get uuid

実行結果

PS C:\WINDOWS\system32> wmic csproduct get uuid
UUID
809E741E-58C5-E311-804E-B0ED45112087

 

PowerShell

Posted by arkgame