windows:get_the_windows_product_key:using_powershell
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
windows:get_the_windows_product_key:using_powershell [2022/06/14 09:24] – peter | windows:get_the_windows_product_key:using_powershell [2022/06/14 09:48] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Windows - Get the Windows Product Key - Using Powershell ====== | ====== Windows - Get the Windows Product Key - Using Powershell ====== | ||
- | Windows has a couple different places where you can find different product keys such as the OEM key from vendors such as Dell, Lenovo, etc; and the BackupProductKeyDefault in the registry. | + | ===== RunProdKey.bat ===== |
- | To find the OEM Key you can find your key using this powershell | + | This runs the powershell |
- | < | + | < |
- | wmic path SoftwareLicensingService get OA3xOriginalProductKey | + | @ECHO OFF |
+ | Powershell.exe -executionpolicy remotesigned -File ./ | ||
</ | </ | ||
- | or | + | <WRAP info> |
+ | **NOTE: | ||
+ | </ | ||
- | < | + | |
- | powershell | + | ---- |
+ | |||
+ | ===== Get-ProductKey.ps1 ===== | ||
+ | |||
+ | < | ||
+ | start-process -FilePath | ||
+ | $SLS = wmic path SoftwareLicensingService get OA3xOriginalProductKey | ||
+ | $RLS = Get-ItemPropertyValue ' | ||
+ | $SLSKey = $SLS.Split(" ", | ||
+ | $DPID = Get-ItemPropertyValue ' | ||
+ | $EditionID = Get-ItemPropertyValue | ||
+ | |||
+ | function ConvertTo-ProductKey { | ||
+ | param ( | ||
+ | [parameter(Mandatory = $True, Position = 0)] | ||
+ | $Registry, | ||
+ | [parameter()] | ||
+ | [Switch]$x64 | ||
+ | ) | ||
+ | begin { | ||
+ | $map = " | ||
+ | } | ||
+ | process { | ||
+ | $ProductKey = "" | ||
+ | |||
+ | $prodkey = $Registry[0x34 .. 0x42] | ||
+ | |||
+ | for ($i = 24; $i -ge 0; $i--) { | ||
+ | $r = 0 | ||
+ | for ($j = 14; $j -ge 0; $j--) { | ||
+ | $r = ($r * 256) -bxor $prodkey[$j] | ||
+ | $prodkey[$j] = [math]:: | ||
+ | $r = $r % 24 | ||
+ | } | ||
+ | $ProductKey = $map[$r] + $ProductKey | ||
+ | if (($i % 5) -eq 0 -and $i -ne 0) { | ||
+ | $ProductKey = " | ||
+ | } | ||
+ | } | ||
+ | $ProductKey | ||
+ | } | ||
+ | } | ||
+ | |||
+ | $x = Get-ItemProperty ' | ||
+ | key = ConvertTo-ProductKey $x.DigitalProductId | ||
+ | |||
+ | $prodKey = " | ||
+ | |||
+ | Add-Content .\ProductKey.txt===== Get-ProductKey.ps1 ===== | ||
+ | |||
+ | <code vb> | ||
+ | start-process -FilePath " | ||
+ | $SLS = wmic path SoftwareLicensingService | ||
+ | $RLS = Get-ItemPropertyValue | ||
+ | $SLSKey = $SLS.Split(" | ||
+ | $DPID = Get-ItemPropertyValue ' | ||
+ | $EditionID = Get-ItemPropertyValue ' | ||
+ | |||
+ | function ConvertTo-ProductKey { | ||
+ | param ( | ||
+ | [parameter(Mandatory = $True, Position = 0)] | ||
+ | $Registry, | ||
+ | [parameter()] | ||
+ | [Switch]$x64 | ||
+ | ) | ||
+ | begin { | ||
+ | $map = " | ||
+ | } | ||
+ | process { | ||
+ | $ProductKey = "" | ||
+ | |||
+ | $prodkey = $Registry[0x34 | ||
+ | |||
+ | for ($i = 24; $i -ge 0; $i--) { | ||
+ | $r = 0 | ||
+ | for ($j = 14; $j -ge 0; $j--) { | ||
+ | $r = ($r * 256) -bxor $prodkey[$j] | ||
+ | $prodkey[$j] = [math]:: | ||
+ | $r = $r % 24 | ||
+ | } | ||
+ | $ProductKey = $map[$r] + $ProductKey | ||
+ | if (($i % 5) -eq 0 -and $i -ne 0) { | ||
+ | $ProductKey = "-" + $ProductKey | ||
+ | } | ||
+ | } | ||
+ | $ProductKey | ||
+ | } | ||
+ | } | ||
+ | |||
+ | $x = Get-ItemProperty ' | ||
+ | $key = ConvertTo-ProductKey $x.DigitalProductId | ||
+ | |||
+ | $prodKey = " | ||
+ | |||
+ | Add-Content .\ProductKey.txt $prodKey | ||
</ | </ | ||
- | To find the backup Windows Key in the registry it is located using the regedit path below. | + | ---- |
- | < | + | |
- | HKLM: | + | |
</ | </ | ||
Line 24: | Line 120: | ||
===== CDKey.vbs ===== | ===== CDKey.vbs ===== | ||
+ | |||
+ | This script is run from the **Get-ProductKey.ps1** powershell script. | ||
+ | |||
+ | The powershell script finds the keys such as the OEM Key and the registry BackupProductKeyDefault then appends it to the text file. | ||
<code vb> | <code vb> | ||
Line 87: | Line 187: | ||
---- | ---- | ||
- | ===== Get-ProductKey.ps1 ===== | ||
- | |||
- | <code vb> | ||
- | start-process -FilePath " | ||
- | $SLS = wmic path SoftwareLicensingService get OA3xOriginalProductKey | ||
- | $RLS = Get-ItemPropertyValue ' | ||
- | $SLSKey = $SLS.Split(" | ||
- | $DPID = Get-ItemPropertyValue ' | ||
- | $EditionID = Get-ItemPropertyValue ' | ||
- | |||
- | function ConvertTo-ProductKey { | ||
- | param ( | ||
- | [parameter(Mandatory = $True, Position = 0)] | ||
- | $Registry, | ||
- | [parameter()] | ||
- | [Switch]$x64 | ||
- | ) | ||
- | begin { | ||
- | $map = " | ||
- | } | ||
- | process { | ||
- | $ProductKey = "" | ||
- | |||
- | $prodkey = $Registry[0x34 .. 0x42] | ||
- | |||
- | for ($i = 24; $i -ge 0; $i--) { | ||
- | $r = 0 | ||
- | for ($j = 14; $j -ge 0; $j--) { | ||
- | $r = ($r * 256) -bxor $prodkey[$j] | ||
- | $prodkey[$j] = [math]:: | ||
- | $r = $r % 24 | ||
- | } | ||
- | $ProductKey = $map[$r] + $ProductKey | ||
- | if (($i % 5) -eq 0 -and $i -ne 0) { | ||
- | $ProductKey = " | ||
- | } | ||
- | } | ||
- | $ProductKey | ||
- | } | ||
- | } | ||
- | |||
- | $x = Get-ItemProperty ' | ||
- | $key = ConvertTo-ProductKey $x.DigitalProductId | ||
- | |||
- | $prodKey = " | ||
- | |||
- | Add-Content .\ProductKey.txt $prodKey | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | |||
- | ===== RunProdKey.bat ===== | ||
- | |||
- | The powershell script is run from a bat file which sets the Powershell script bypass for running the powershell script. | ||
- | |||
- | <code bat> | ||
- | @ECHO OFF | ||
- | Powershell.exe -executionpolicy remotesigned -File ./ | ||
- | </ | ||
- | |||
- | ---- | ||
===== References ===== | ===== References ===== |
windows/get_the_windows_product_key/using_powershell.1655198689.txt.gz · Last modified: 2022/06/14 09:24 by peter