Here is method to Find any Windows Product Key without using any Software By XPCMasti.blogspot.com |
Many times this is where we want to install Windows on a computer or laptop is not nearly important product Windows, especially you, not copy the physical version OEM of Windows. Microsoft is fully compatible with the retail copy of the computer or their own branded OEM version of Windows as compared to DVD. After some time, the label attached to the bottom of your computer that is dirty or eliminated and may lose your password. But what is important is that the product is also available, but hidden in encrypted form in the file system. So you need some software or script to decode it.
Today we going to use VB Script instead of Software
You must be thinking why we use when writing software can download Internet free of charge, but these software small with malware.So little is how best to find the key produck script simple "Visual Basic" stated below.
After saving the file to your desktop, double-click it to run the file and a new window will appear showing your product key Windows.
Set WshShell = CreateObject(“WScript.Shell”)How to make VB Script ?
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
- Open Notepad
- Paste the above code in Notepad
- Save it, When save popup come Change "Save type as" to "All"
- Change Encoding to "Unicode"
- And type Name as "productkey.vbs"
- Done.
No comments