ffzy2023 发表于 2023-3-14 22:18

使用au3获得系统序列号

#RequireAdmin

$xtbit = StringInStr (@SystemDir,"64")
If $xtbit = 0 Then
$key = RegRead("HKLM\SOFTWARE\MICROSOFT\Windows NT\CurrentVersion\SoftwareProtectionPlatform", "BackupProductKeyDefault")
Else
$key = RegRead("HKLM64\SOFTWARE\MICROSOFT\Windows NT\CurrentVersion\SoftwareProtectionPlatform", "BackupProductKeyDefault")
EndIf

MsgBox(0,"系统序列号",$key)

chishingchan 发表于 2023-3-15 08:19

阁下不如学习一下 VBScript,因为这个是内置应用。
而且这个注册表读取使用批处理也能胜任!

scbzwv 发表于 2023-3-15 15:15

感谢分享
页: [1]
查看完整版本: 使用au3获得系统序列号