Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in /home/r5652521/public_html/soma-engineering.com/wp-content/themes/affinger/functions.php on line 1548
Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in /home/r5652521/public_html/soma-engineering.com/wp-content/themes/affinger/functions.php on line 1548
Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in /home/r5652521/public_html/soma-engineering.com/wp-content/themes/affinger/functions.php on line 1548
Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in /home/r5652521/public_html/soma-engineering.com/wp-content/themes/affinger/functions.php on line 1548
Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in /home/r5652521/public_html/soma-engineering.com/wp-content/themes/affinger/functions.php on line 1548
こんにちは!SE ブログの相馬です。
今回は、Windows 10 のプロダクトキーを確認する方法について書きました。
Windows 10 のインストールには一部プロダクトキーの入力を求められる場合があります。
その場合、プロダクトキーが手元にあってすぐ確認できる状態にあれば良いのですが、紛失してしまった場合や、中古の PC の場合などでプロダクトキーが確認できない場合はどうしたらよいのでしょうか?
そこで、プロダクトキーを確認する方法として、PowerShell やフリーツールを使って取得する方法などあるのですが、PC にツールなどインストールしなくても確実に取得する方法があります。
それは以下の方法になりますが、やってみてできなかった事・できた事を説明させていただこうと思います。
試してみたができなかった事
WMIC コマンド
まずは wmic コマンドでたたいてみましたが、私の PC では結果は表示されませんでした。
1 |
<span class="gm_ gm_7f80f532-f870-3fd9-a945-aef7c1f932b4 gm-spell">wmic</span><span class="gmw_"> path <span class="gm_ gm_b73c818f-0025-7b1f-40de-354965ef07fe gm-spell">softwarelicensingservice</span> get OA3xOriginalProductKey</span> |
PowerShell
続いて、PowerShell でも試してみましたが、私の PC ではプロダクトキーは取得できませんでした。
1 |
<span class="gmw_"><span class="gm_ gm_d2869d97-4fac-4855-24c4-d7e98381b7b0 gm-spell">powershell</span> "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey"</span> |
レジストリを見てみた
何故プロダクトキーが表示されないのだろうと思い、ネットで調べてレジストリの場所を探してみましたところ、何やら暗号化されているように見えます。
暗号化されているのではないかというのは、プロダクトキーの文字列ではない為です。どうやら暗号化されているが為に、プロダクトキーを取得する事ができないのかもしれません。
1 |
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DefaultProductKey |
最終的にやった事
ツールをインストールするのは良いですが、面倒なのと極力フリーのツールはインストールしたくない場合どうすれば良いか調べてみましたところ、Microsoft のコミュニティに方法が書いてありました。
How to find all windows version serial key | Microsoft
このスクリプトをテキストに貼って、拡張子を .vbs に変更して保存した後に、ダブルクリックすればプロダクトキーが表示されます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
Set WshShell = CreateObject("WScript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) Function ConvertToKey(Key) Const KeyOffset = 52 i = 28 Chars = "BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur = Cur * 256 Cur = Key(x + KeyOffset) + Cur Key(x + KeyOffset) = (Cur \ 24) And 255 Cur = Cur Mod 24 x = x -1 Loop While x >= 0 i = i -1 KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput If (((29 - i) Mod 6) = 0) And (i <> -1) Then i = i -1 KeyOutput = "-" & KeyOutput End If Loop While i >= 0 ConvertToKey = KeyOutput End Function |
まとめ
いかがでしょうか。PC の環境によっては wmic や PowerShell では取得できない場合があるのかもしれません。その場合は上のスクリプトを実行する事によって取得できますので、是非とも試してみるとよいでしょう。
それでは最後までお読みいただきありがとうございました!