web-dev-qa-db-ja.com

Windows8.1コマンドプロンプトを使用してWindowsアクティベーションキーを表示する

おそらくいくつかの破損したシステムファイルが原因で、コントロールパネルにアクセスできません。また、Microsoftにサポートを依頼するには、Windows8.1のプロダクトキーを提供する必要があります。では、コマンドプロンプトを使用してWindows 8.1のプロダクトキーにアクセスする方法はありますか?

ありがとうございました。

ProduKeyは、これらおよびその他で動作します

Microsoft Windows 8
Microsoft Windows 7
Microsoft Windows Vista

ProduKey-Windowsの失われたプロダクトキーを回復します

1
Steven Penny

私の知る限り、古いコマンドプロンプトを使用してそれを行うことはできません。ただし、PowerShellを使用すると、キーを見つけることができます。それを見つけるには、次のスクリプトを実行する必要があります(PowerShellにコピーして貼り付けてから、Enterキーを押すだけで十分です):

    # create table to convert in base 24 
$map="BCDFGHJKMPQRTVWXY2346789" 
# Read registry Key 
$value = (get-itemproperty "HKLM:\\SOFTWARE\Microsoft\Windows NT\CurrentVersion").digitalproductid[0x34..0x42] 
# Convert in Hexa to show you the Raw Key 
$hexa = "" 
$value | foreach { 
  $hexa = $_.ToString("X2") + $hexa 
} 
"Raw Key Big Endian: $hexa" 

# find the Product Key 
$ProductKey = "" 
for ($i = 24; $i -ge 0; $i--) { 
  $r = 0 
  for ($j = 14; $j -ge 0; $j--) { 
    $r = ($r * 256) -bxor $value[$j] 
    $value[$j] = [math]::Floor([double]($r/24)) 
    $r = $r % 24 
  } 
  $ProductKey = $map[$r] + $ProductKey  
  if (($i % 5) -eq 0 -and $i -ne 0) { 
    $ProductKey = "-" + $ProductKey 
  } 
} 
"Product Key: $ProductKey" 
3
celalalt