脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS通过WMI获取CPU使用率的代码

VBS通过WMI获取CPU使用率的代码

2020-08-04 12:18demon VBS

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://demon.tw/programming/vbs-wmi-cpu-usage.html

延伸 · 阅读

精彩推荐