📅  最后修改于: 2023-12-03 15:38:47.250000             🧑  作者: Mango
在安装 Windows 10 时,需要输入产品密钥来激活操作系统。但是很多用户常常会忘记保存自己的产品密钥,导致需要重新安装系统时出现困难。本文将介绍几种方法来找到Windows 10的产品密钥。
在Windows 10系统中,可以通过使用命令行脚本来获取系统的产品密钥。以下是操作步骤:
Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLMSOFTWAREMicrosoftWindowsNTCurrentVersionDigitalProductId"))
Function ConvertToKey(Key)
Const KeyOffset = 52
Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert
'Check if OS is Windows 8
isWin8 = (Key(66) 6) & 1
Key(66) = (Key(66) & 247) Or ((isWin8 And 2) * 4)
i = 24
Maps = "BCDFGHJKMPQRTVWXY2346789"
Do
Current= 0
j = 14
Do
Current = Current 256
Current = Key(j + KeyOffset) + Current
Key(j + KeyOffset) = (Current \ 24)
Current=Current Mod 24
j = j -1
Loop While j = 14
i = i -1
KeyOutput = Mid(Maps,Current+1,1) & KeyOutput
Last = Current
Loop While i >= 0
keypart1 = Mid(KeyOutput, 2, Last)
insert = "N"
KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
If Last = 0 Then KeyOutput = insert & KeyOutput
ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)
End Function
另外一种获取Windows 10产品密钥的方法是使用PowerShell命令。操作步骤:
powershell "(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey"
如果您在安装Windows 10系统之前曾使用本地账户登录,则可以通过以下步骤找到您的产品密钥:
通过以上三种方法,您可以很容易地找到Windows 10的产品密钥。值得注意的是,如果您未激活Windows 10系统,那么您可能需要一个合法的产品密钥来完成激活。因此,建议在安装Windows 10时保存好您的产品密钥。