How to retrieve Windows 10 Pro license key

JoakimSV 45 Reputation points
2023-01-26T08:47:49.2433333+00:00

How do i find, and unregister an Windows 10 Pro license?

I am unable to find the email containing the Windows key ( can i find it in another way?).

I want to retrieve the key and unregister it so that i can use it on new installation or hardware change (HDD/SSD/motherboard change)

I only have a local account on my computer and i dont want to have my microsoft account as a userprofile / linked to a local account.

-Thanks

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,611 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Dave Patrick 426.1K Reputation points MVP
    2023-01-26T15:00:32.95+00:00

    You can try using one of the key finder utilities found on internet. You can do slmgr /upk but this only remove a local product key, nothing is sent to microsoft activation servers in the way of unregistering.

    --please don't forget to upvote and Accept as answer if the reply is helpful--


  2. Limitless Technology 43,931 Reputation points
    2023-01-26T16:10:17.7966667+00:00

    Hello there,

    You can 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

    1. 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.
    2. Close Notepad and double-click the file. Wait a few seconds, and then you will be presented with a popup displaying your product key:

    Hope this resolves your Query !!

    --If the reply is helpful, please Upvote and Accept it as an answer–

    0 comments No comments

  3. S.Sengupta 15,111 Reputation points MVP
    2023-01-28T02:07:14.3066667+00:00

    There are third party tool like Magical Jellybeanfinder

    0 comments No comments