Petit programme en VBS pour connaître sa clé Windows

de | 14 octobre 2016

Voici un petit programme en VBS pour connaître sa clé d'activation Windows.

Utilisation : Ouvrir le bloc note, copier l'ensemble des lignes ci-dessous et enregistrer le fichier avec une extension "vbs" (Exemple : macle.vbs).

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

Fonctionne sous Windows 7,8,8.1,10

Télécharger le programme ici

Une réflexion au sujet de « Petit programme en VBS pour connaître sa clé Windows »

Les commentaires sont fermés.