VBS获取硬盘序列号

标签: , , , ,

VBS调用WMI获取硬盘序列号,没什么技术含量,核心是Win32_PhysicalMedia类。

'SerialNumber
'By Demon
'https://demon.tw
On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMedia",,48)

Dim objItem 'as Win32_PhysicalMedia
For Each objItem in colItems
    WScript.Echo "SerialNumber: " & objItem.SerialNumber
Next

参考链接:http://msdn.microsoft.com/en-us/library/windows/desktop/aa394346%28v=vs.85%29.aspx

赞赏

微信赞赏支付宝赞赏

随机文章:

  1. 使用Scripting.Encoder加密VBS脚本
  2. 此版本之魔兽争霸III需要特定语言版本之Windows
  3. C语言中NULL和NUL的区别
  4. VBS技术内幕:数组的内部实现
  5. 一个VBS恶作剧程序的解密

留下回复