Windows 7 Wndows 7 product key lost, what is a trustworthy product key recovery program?

HelpMePlease

New Member
Joined
Feb 18, 2011
I lost my win 7 product key and need to find a trustworthy product key recovery program, I heard of the magical jellybean one but it's hard for me to take it serious, usually programs with ridiculous names have screwed me in the past. I am half-expecting it to send my product key to the dude who made the software.

Anyways, what's a good software to recover my product key for win 7? It's all legit but I just lost my cd/case/key sticker. =[
 
Jellybean is ok but if you don't trust then just run this vbs script
Create a new txt file on desktop and call it Key.vbs. Add all below
Code:
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
 
Back
Top Bottom