Deep BlueVBScriptWMIPHPC语言JavaScriptWindows API路由器Windows函数Python

VBS调用WMI获取CPU使用率

Google关键词“WMI CPU使用率”,得到的全是《python使用WMI监视系统-CPU使用率》,不用看,肯定又是采集的。

Python固然强大,但是调用WMI还是用VBS比较“正宗”。

On Error Resume Next
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_Processor",,48)

For Each objItem in colItems
    WScript.Echo "LoadPercentage: " & objItem.LoadPercentage
Next

参考链接:Win32_Processor Class


http://ken.gw.to/