Jump to content

I want the #, akk it says a digital license.

GIGA AORUSBYTE B550I PRO AX (AM4 AMD/B550/Mini-Itx/Dual M.2/SATA 6Gb/s/USB 3.2 Gen 1/WiFi 6/2.5 GbE LAN/PCIe4.0/Realtek ALC1220-Vb/DisplayPort 1.4/2xHDMI 2.0B/RGB Fusion 2.0/DDR4/Gaming Motherboard) ,AMD Ryzen 7 5800X 8-core, 16-Thread Unlocked 4.7 GHz, TEAMGROUP T-Force Vulcan Z DDR4 32GB (2 x 16GB) 3200MHz (PC4 25600) Ram, EVGA GeForce RTX 3060 Ti XC Gaming, 08G-P5-3663-KL, 8GB GDDR6, Metal Backplate, LHR 

Link to comment
https://linustechtips.com/topic/1400884-get-the-win10-key/
Share on other sites

Link to post
Share on other sites

Assuming you're looking to find the product key of an existing Windows install since your post is almost unintelligible... this might help?

https://www.nirsoft.net/utils/product_cd_key_viewer.html

F@H
Desktop: i9-13900K, ASUS Z790-E, 64GB DDR5-6000 CL36, RTX3080, 2TB MP600 Pro XT, 2TB SX8200Pro, 2x16TB Ironwolf RAID0, Corsair HX1200, Antec Vortex 360 AIO, Thermaltake Versa H25 TG, Samsung 4K curved 49" TV, 23" secondary, Mountain Everest Max

Mobile SFF rig: i9-9900K, Noctua NH-L9i, Asrock Z390 Phantom ITX-AC, 32GB, GTX1070, 2x1TB SX8200Pro RAID0, 2x5TB 2.5" HDD RAID0, Athena 500W Flex (Noctua fan), Custom 4.7l 3D printed case

 

Asus Zenbook UM325UA, Ryzen 7 5700u, 16GB, 1TB, OLED

 

GPD Win 2

Link to comment
https://linustechtips.com/topic/1400884-get-the-win10-key/#findComment-15186319
Share on other sites

Link to post
Share on other sites

There are a few things to extract your licence key. Not sure how it works with Windows 10/11, but normally, you can reinstall Windows as long as your motherboard didn't change.

 

This command in the command prompt ;

wmic path softwarelicensingservice get OA3xOriginalProductKey

 

Also, not sure it will work, but there's a VBS script to extract your Windows key from the registry (EDIT : copy/paste in a text file, and rename it to .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

 

If you need help with your forum account, please use the Forum Support form !

Link to comment
https://linustechtips.com/topic/1400884-get-the-win10-key/#findComment-15186325
Share on other sites

Link to post
Share on other sites

3 hours ago, Kilrah said:

Assuming you're looking to find the product key of an existing Windows install since your post is almost unintelligible... this might help?

https://www.nirsoft.net/utils/product_cd_key_viewer.html

How, I rhink it makes sense.

GIGA AORUSBYTE B550I PRO AX (AM4 AMD/B550/Mini-Itx/Dual M.2/SATA 6Gb/s/USB 3.2 Gen 1/WiFi 6/2.5 GbE LAN/PCIe4.0/Realtek ALC1220-Vb/DisplayPort 1.4/2xHDMI 2.0B/RGB Fusion 2.0/DDR4/Gaming Motherboard) ,AMD Ryzen 7 5800X 8-core, 16-Thread Unlocked 4.7 GHz, TEAMGROUP T-Force Vulcan Z DDR4 32GB (2 x 16GB) 3200MHz (PC4 25600) Ram, EVGA GeForce RTX 3060 Ti XC Gaming, 08G-P5-3663-KL, 8GB GDDR6, Metal Backplate, LHR 

Link to comment
https://linustechtips.com/topic/1400884-get-the-win10-key/#findComment-15186345
Share on other sites

Link to post
Share on other sites

A few things:

  1. wmic will not exists under Windows 11 for its next version. It was deprecated for many years and now killed off. Please note that WMI is still there and supported, not WMIC. So the command posted above will not work.
  2. If you use a Microsoft linked account, and you re-installed the system without entering the product key, then you'll only have Windows generic trial key, and not the actual one.
  3. Wrong tool suggested. You need the Scanner one: https://www.nirsoft.net/utils/product_key_scanner.html
  4. If the system is an OEM built system from a big company (Dell, Acer, HP, etc.), then the product key is stored in the UEFI chip. Windows, at first run, after being connected online, will grab it, and validate it. All you have to do is pick "I don't have one" at the install screen when asked for the product key, and pick the right edition of Windows. BIOS based systems (Windows 7 and earlier) should have a product key sticker on the system. The product key will NOT match the one installed on the system. The one used on the system is a special one by OEMs, and unless something changed, will not work to activate newer version of Windows. Unless something changed, the one from the sticker will also not work, but only for the first time used through the automatic activation process. A phone or chat activation is required to use it. Then after that, it will work.

 

Link to comment
https://linustechtips.com/topic/1400884-get-the-win10-key/#findComment-15188761
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×