2020-01-22

Upgrade laptop Operating System from Windows 7 to Windows 10






Reference URL:

https://www.ghacks.net/2019/11/30/here-is-why-free-upgrades-to-windows-10-still-work/

https://www.windowslatest.com/2019/12/01/download-windows-10-november-2019-update-iso-images/








Details in Google Doc: https://docs.google.com/document/d/1p4XhNunC6nmMo1_9kJQyp2TGb4aMrELgD6adU_-nntE/edit?usp=sharing























Tried and working to retrieve Windows Product Key which Stored in the Windows Registry

But the "key" only show less than 5 seconds...

Or lately i came across this https://www.nirsoft.net/utils/product_cd_key_viewer.html, which will cover at another page: https://billson.blogspot.com/2020/07/found-produkey-v193-recover-lost.html


Source URL: https://answers.microsoft.com/en-us/windows/forum/windows_10-windows_install-winpc/how-to-recover-your-windows-product-key/8687ef5d-4d32-41fc-9310-158f8e5f02e3


Stored in the Windows Registry
If your product key isn't embedded in the firmware or you're missing your COA sticker, you're not out of luck as long as you haven't formatted your computer. You can still recover the key because Windows stores it in the registry. Here is how:
1. Open a new Notepad window
2. Copy and paste the following text into the window
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. Click File > Save As and save the file to your desktop as productkey.vbs. It's important to include the .vbs extension because this is a Windows Scripting Host file.
4. Close Notepad and double-click the file. Wait a few seconds, and then you will be presented with a popup displaying your product key:



























Google Referrals