Utilisation de l'invite de commande Windows 8.1 pour afficher la clé d'activation Windows

2

Je ne parviens pas à accéder à mon panneau de configuration, probablement à cause de fichiers système corrompus. Et pour demander l'aide de Microsoft, je dois leur donner ma clé de produit Windows 8.1. Est-il donc possible d'accéder à ma clé de produit Windows 8.1 à l'aide de l'invite de commande?

Je vous remercie.

Ralph David Abernathy
la source

Réponses:

3

Autant que je sache, vous ne pouvez pas faire cela en utilisant l'ancienne invite de commande. Cependant, vous pouvez trouver votre clé si vous utilisez Powershell. Pour le trouver, vous devez exécuter le script suivant (il suffit de le copier-coller dans Powershell puis d'appuyer sur Entrée):

    # 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" 
Celalalt
la source