Windows 10 Original Product Key

Did you ever wonder what is Windows 10 Original Product Key after upgrade from Windows 7 or Windows 8 ?

I found that after every upgrade Windows 10 Pro Installed Key is :

VK7JG-NPHTM-C97JM-9MPGT-3V66T.

What happened with original key ?

After some research i found that only two programs (I was searching for scripts also) shows what is hidden.

One is ShowKeyPlus:

2016-06-08_21h59_28

Second one is ProduKey :

2016-06-08_22h06_00

Both are great, but what i need was something that I can use in PowerShell script to save and check Windows 10 Original Product Key and here ProduKey wins.

The trick is that the original Windows key in ProduKey can be check under the Internet Exporer key

My pice of script:

Start-Process -FilePath 'C:\AutomationLogs\ProduKey.exe' -ArgumentList '/IEKeys 1 /WindowsKeys 1 /scomma C:\AutomationLogs\ProduKey.csv' -Wait

if(Test-Path -Path 'C:\AutomationLogs\ProduKey.csv')
{
$Header = 'ProductName','ProductID','ProductKey','InstallationFolder','ServicePack','ComputerName','ModifiedTime'
$ProduKey = Import-Csv -Path 'C:\AutomationLogs\ProduKey.csv' -Delimiter ',' -Header $Header
$ProduKey
}

2 thoughts on “Windows 10 Original Product Key

Leave a comment