Risposte:
O l'adesivo fornito con la macchina e / o sulla custodia del supporto.
Puoi anche provare Nirsoft ProduKey per un software.
Product Key Finder è uno strumento gratuito che visualizzerà il codice Product Key di Windows installato e altre informazioni importanti sul sistema Windows. Product Key Finder funziona con i seguentisistemi operativi Windows (2000, 2003, XP, Vista, 2008, 7 ), 32-bit e 64-bit .
Trova metodi alternativi qui:
Come trovare il codice chiave del prodotto Windows 7
Puoi anche eseguire il backup dei file di attivazione di Windows:
Come eseguire il backup e il ripristino dello stato di attivazione di Windows 7 e Server 2008 R2
Questo breve script PowerShell di Winaero può essere utilizzato.
Consulta il post sul blog per istruzioni dettagliate se non hai familiarità con PowerShell.
function Get-WindowsKey {
## Function to retrieve the Windows Product Key from any PC
## by Jakob Bindslet (jakob@bindslet.dk)
param ($targets = ".")
$hklm = 2147483650
$regPath = "Software\Microsoft\Windows NT\CurrentVersion"
$regValue = "DigitalProductId"
Foreach ($target in $targets) {
$productKey = $null
$win32os = $null
$wmi = [WMIClass]"\\$target\root\default:stdRegProv"
$data = $wmi.GetBinaryValue($hklm,$regPath,$regValue)
$binArray = ($data.uValue)[52..66]
$charsArray = "B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9"
## decrypt base24 encoded binary data
For ($i = 24; $i -ge 0; $i--) {
$k = 0
For ($j = 14; $j -ge 0; $j--) {
$k = $k * 256 -bxor $binArray[$j]
$binArray[$j] = [math]::truncate($k / 24)
$k = $k % 24
}
$productKey = $charsArray[$k] + $productKey
If (($i % 5 -eq 0) -and ($i -ne 0)) {
$productKey = "-" + $productKey
}
}
$win32os = Get-WmiObject Win32_OperatingSystem -computer $target
$obj = New-Object Object
$obj | Add-Member Noteproperty Computer -value $target
$obj | Add-Member Noteproperty Caption -value $win32os.Caption
$obj | Add-Member Noteproperty CSDVersion -value $win32os.CSDVersion
$obj | Add-Member Noteproperty OSArch -value $win32os.OSArchitecture
$obj | Add-Member Noteproperty BuildNumber -value $win32os.BuildNumber
$obj | Add-Member Noteproperty RegisteredTo -value $win32os.RegisteredUser
$obj | Add-Member Noteproperty ProductID -value $win32os.SerialNumber
$obj | Add-Member Noteproperty ProductKey -value $productkey
$obj
}
}
Scarica, installa, eseguilo, quindi apre una pagina nel tuo browser Web che mostra tutti i tipi di fatti e statistiche sul tuo PC ... nella parte inferiore, ha tutti i codici "Product Key", ecc. Per tutto il software di installazione e, di ovviamente, il sistema operativo ... Spero che ti aiuti!