Cara Menemukan Kunci WIndows 10 Anda Menggunakan Metode Windows Registry

Bagi Sobat yg membutuhkan Key Windows 10 Pro pada Pc/Laptop yg sudah diaktivasi,dan Sticker ataupun catatan hilang ntah kemana..Sobat perlu melakukna Reinstall dllpada Device yg sama.Nah Sobat perlu melakukan beberapa langkah dibawah ini:

1.Buat New - Tekt Document (misal Notepad)
2. Copy dan Paste Script Code dibawah
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

3.Save As nama file misalnya "productkeywin10" save dengan ektension *.VBS

4.Klik file yg Sobat Buat tadi dan informasi key windows akan muncul.

Mudah kan

/mf


Post a Comment for "Cara Menemukan Kunci WIndows 10 Anda Menggunakan Metode Windows Registry"