自建Dell server 机器代码查询脚本(强烈推荐)

#this is a vbs file.

 

strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_BIOS",,48)
For Each objItem in colItems
  strTAG = objItem.SerialNumber
Next

strTAG = UCase(strTAG)
TAGLen = Len(strTAG)
tmp = 0
For i = 1 To TAGLen
  ChrSerial = Asc(Mid(strTAG,i,1))
  If ChrSerial > 47 And ChrSerial < 58 Then                '是数字
    ChrSerial = ChrSerial - 48
  ElseIf ChrSerial > 64 And ChrSerial < 91 Then                '是字母
    ChrSerial = ChrSerial - 55
  Else
    WScript.Echo "The Service TAG is error"
    WScript.Quit
  End If
  tmp = tmp + 36 ^ (TAGLen - i) * ChrSerial
Next
WScript.Echo "Service TAG: " & strTAG
WScript.Echo "Express Service Code: " & tmp

转载于:https://www.cnblogs.com/spcc/archive/2012/07/05/2577684.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值