在不使用任何软件的情况下查找 Windows 10 产品密钥

在不使用任何软件的情况下查找 Windows 10 产品密钥:(Find Windows 10 product key without using any software:)这篇文章将向您展示如何使用VB 脚本找到您的(VB Script)Windows 10产品密钥。但我必须补充一点,这也适用于Windows 10Windows 8和 8.1、Windows 7 及更早版本。如果由于某种原因您需要查找您的Windows 许可证或序列号(Windows license or serial)(Windows license or serial),那么本指南可以帮助您。

在不使用任何软件的情况下查找 Windows 10 产品密钥

好吧,你的电脑附带了一个已经激活的Windows副本,直到现在你才需要密钥(我猜你正在升级你的Windows副本)。还有很多其他方法可以找到您的Windows 10产品(Product)密钥,但在这篇文章中,我们将了解如何在不使用任何外部软件的情况下找到它。有些人有信任问题,他们不想将软件用于其他所有事情,所以这里是如何在不使用任何软件的情况下找到Windows 10 产品密钥。(Windows)

查找 Windows 10 产品密钥(Find Windows 10 product key)

1.打开记事本(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

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

3.现在运行此文件,您将找到您的Windows 10 产品密钥(Windows 10 product key)

Windows 10 产品密钥查找器

为你推荐:(Recommended for you:)

就是这样,您已经成功学习了如何(How)在 不使用任何软件的情况下找到 Windows 10 产品密钥,(find Windows 10 product key without using any software)但如果您对这篇文章仍有疑问,请随时在评论部分提出。



About the author

我是一名 Windows 专家,在软件行业工作了 10 多年。我有使用 Microsoft Windows 和 Apple Macintosh 系统的经验。我的技能包括:窗口管理、计算机硬件和声音、应用程序开发等等。我是一位经验丰富的顾问,可以帮助您充分利用 Windows 系统。



Related posts