如何在 Windows 11/10 中使用 VB 脚本查找 Windows 产品密钥

这篇文章将向您展示如何使用VB 脚本找到您的(VB Script)Windows 11/10 Product License Key。但我必须补充一点,这也适用于Windows 8.1、 Windows 7 和更早版本。如果由于某种原因您需要查找您的 Windows 许可证或序列号,那么这篇文章一定会帮助您找到您的 Windows 10 产品密钥(find your Windows 10 Product Key)

(Find)使用VB 脚本(VB Script)查找Windows 11/10产品密钥(Product Key)

查找 Windows 10 产品密钥

打开记事本(Notepad)并复制粘贴以下内容:

Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))

Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function

另存(Save)为对话框中,选择所有文件并将此文件另存为 .vbs 文件,并为其指定任何合适的名称,例如 keyfinder.vbs。

现在运行此文件,您将看到您的 Windows 10 产品密钥。

您还可以使用命令提示符或 PowerShell 找到 Windows 产品密钥(find Windows Product Key using Command Prompt or PowerShell)

如果这些方法对您不起作用,您还可以使用一些免费的软件密钥查找器(Software Key Finders)来恢复和保存,不仅是Windows,还包括Office软件(Software)游戏(Games)序列号和许可证密钥。

如果您想在需要时卸载 Windows 产品密钥,这篇文章将为您提供帮助。



About the author

在商业和技术方面,Windows 10 和 Windows 11/10 是非常重要的工具。它们使您可以比以往更轻松、更安全地与计算机交互,并运行功能强大但可自定义的应用程序,而不会带来任何安全风险。这些工具对于希望能够扩大其在线业务并吸引新客户的企业来说也是必不可少的。因此,我会说我在 Windows 10 和 Windows 11/10 方面的技能使我成为此类工作或业务的理想人选。



Related posts