Retrieve Windows 8 Product Key from mainboard

23,190

Solution 1

Usually, OEM manufacturers have preloaded a key electronically on a ROM. Windows will identify this and automatically activate your installation. So, usually, you don't need to know this code. However, you may see some trace of this using

sudo dmidecode

listed as OEM-specific Types, encoded/encrypted, which may hold it. Major OEMs like HP and Dell use this. Ask on Windows websites for more details; this is the wrong place. The only detail I remember is that one needs an OEM version of the Windows installation disc (i.e. non-retail).

Solution 2

Another way that doesn't require looking through a ton of output is:

sudo acpidump -b -t MSDM | dd bs=1 skip=56 2>/dev/null;echo

acpidump dumps the table (default in hexdump format), but the -b options tells it to output the raw data. Since we only need the last part of the table, pipe the output into dd, but but skip the unnecessary junk. Finally, add an echo at the end to make it terminal-friendly =D

acpidump -t MSDM will work as well, but the key is broken over multiple lines, making it hard to copy.


Update thanks to Lekensteyn:

New versions of acpidump shipped with Ubuntu work differently than described above. The -b flag causes acpidump to write to a file under all circumstances, so an alternative method is to use the command

sudo tail -c+57 /sys/firmware/acpi/tables/MSDM

A legitimate Windows 8 installer should automatically detect the key in the ACPI and continue installing with the built-in key.

It should be noted, however, that I used this method to try to install Win8 in a VM using my own product key, but it automatically deactivated saying that the product key was in use. So, it's of little use in all reality. Since Win8 OEM keys are designed to be tied to that specific computer, you'll hit a brick wall if you ask Microsoft to unregister the key so you can use it in a VM, let alone another computer.

The only way you could use the key is if you had never booted into Win8 to begin with or weren't connected to a network when you did. Even so, if your VM/new computer is ever allowed to connect to the network, it will automatically register the key making your actual installation unusable.

Solution 3

 sudo tail -c+57 /sys/firmware/acpi/tables/MSDM

This got me the Product Key of my OEM Windows 8 on MSI laptop.

Solution 4

You can all so use this code that works as well if the ones above don't work for you or you just want to see the hex output with your key. It's similar to bless hex binary editor. Windows will have their key in the usual format HAN50-0L00M-4D31T-CR4ZY. 5 letters or numbers in 5 groups.

$ ls /sys/firmware/acpi/tables
$ sudo hd /sys/firmware/acpi/tables/MSDM

00000000  ha ns oo lo oe at es ap  pl le sa uc ef or li fe  |Key in area|
00000010  cu si ca nb ro ha ms am  cu si ca nb ro ha ms am  |In key area|
00000020  it sj us ho wz ir ol lz  it sj us ho wz ir ol lz  |Area in key|
00000000  ha ns oo lo oe at es ap  pl le sa uc ef or li fe  |It is 5 x 5|
00000010  cu si ca nb ro ha ms am  cu si ca nb ro ha ms am  |Key in area|
00000020  it sj us ho wz ir ol lz  it sj us ho wz ir ol lz  |In key area|
00000050  ha ns oo lo ow az he re                           |Area in key|
00000055                                                    |It is 5 x 5|

Running the following command will dump the product key in its standard Microsoft format.

sudo hexdump -s 56 -e '"MSDM key: " /29 "%s\n"' /sys/firmware/acpi/tables/MSDM
Share:
23,190

Related videos on Youtube

Gregor Weber
Author by

Gregor Weber

Updated on September 18, 2022

Comments

  • Gregor Weber
    Gregor Weber almost 2 years

    My new laptop came preinstalled with Windows 8. Naively, as I am, I just formatted the harddrive and installed fine old Ubuntu. Now I want to install Windows 8 for dual boot again, but I have no DVD and do download the ISO one needs a product key. That key is not on the back of the laptop anymore but somewhere on the mainboard.

    Is there any way to recover the product key from the mainboard using Ubuntu?

  • Andrew C
    Andrew C almost 11 years
    Was just trying this out, and the command above cut off one of the characters. I used sudo acpidump -b -t MSDM | dd bs=1 skip=56 2>/dev/null;echo and I got the full key out.
  • Chuck R
    Chuck R almost 11 years
    You are correct, sorry about that. Updating my answer.
  • Lekensteyn
    Lekensteyn almost 10 years
    The -b option is specific to the acpidump tool included with the kernel tree. Newer Ubuntu versions ship with a different acpidump tool (from iasl) which have different options. I could not test this command, but it should work: sudo acpidump -n HPET | tail -n+2 | xxd -r | head -c+57. Alternative method: sudo tail -c+57 /sys/firmware/acpi/tables/MSDM
  • Chuck R
    Chuck R almost 10 years
    @Lekensteyn I noticed that recently too when I was on the phone with MS. If you do the -b option, it defaults to bumping to a file now for some reason. I wonder if there is a way to flag that a pipe be destroyed when there's no more data left on it... another topic for another day though. Your first command didn't work for me, however the second one was just fine. I'll update my answer to include it =)
  • Valross.nu
    Valross.nu over 7 years
    Used the updated version for Ubuntu 16.04 LTS: "sudo tail -c+57 /sys/firmware/acpi/tables/MSDM" Can confirm I got my Windows key from a Samsung laptop just fine =)
  • Luc
    Luc almost 5 years
    I remember using dmidecode on a Lenovo Thinkpad in the past, but it seems that on this Lenovo Ideapad it does not contain the license key anywhere. Eventually I found it in /sys/firmware/acpi/tables/MSDM as mentioned by Chuck R in the other answer below.