不,这与 Windows 序列密钥和/或激活无关。
读完这个问题后(https://stackoverflow.com/q/21548747/1190388)dmidecode
和系统序列号,我遇到了这篇关于 Microsoft 支持的文章页。文章说我可以使用
wmic bios get serialnumber
或 VB 脚本:
On Error Resume Next
Dim strComputer
strComputer = InputBox("Enter the name of the computer:")
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colSMBIOS = objWMIService.ExecQuery ("Select * from Win32_SystemEnclosure")
For Each objSMBIOS in colSMBIOS
MsgBox strComputer & ": " & objSMBIOS.SerialNumber
Next
我尝试这样做,但结果却是一行空白。
C:\Users\hjpotter92>wmic bios get serialnumber
SerialNumber
C:\Users\hjpotter92>wmic csproduct get name
Name
C:\Users\hjpotter92>
那么,这是预期的行为吗?我以管理员身份执行了命令。
答案1
如果您构建了系统但没有为其分配序列号,那么它怎么会有系统序列号呢?