아마도 일부 손상된 시스템 파일 때문에 제어판에 액세스 할 수 없습니다. 그리고 Microsoft에 도움을 요청하려면 Windows 8.1 제품 키를 제공해야합니다. 그렇다면 명령 프롬프트를 사용하여 Windows 8.1 제품 키에 액세스 할 수있는 방법이 있습니까?
고맙습니다.
답변
ProduKey, 이것들과 함께 작동
Microsoft Windows 8
Microsoft Windows 7
Microsoft Windows Vista
답변
내가 아는 한 이전 명령 프롬프트를 사용하여 그렇게 할 수는 없습니다. 그러나 PowerShell을 사용하면 키를 찾을 수 있습니다. 그것을 찾으려면 다음 스크립트를 실행해야합니다 (PowerShell에서 복사하여 붙여 넣기 만하면됩니다).
# 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"