使用WMI从使用> 90%CPU使用率的系统获取进程列表

时间:2012-08-29 09:31:44

标签: powershell wmi wmic

我们正在使用WMI开发远程管理软件。我在从远程设备获取进程列表时遇到问题,该远程设备运行时CPU使用率> 90%。大多数时候我的WMIC命令超时。  我正在远程查询Win32_Process 任何解决方案?

1 个答案:

答案 0 :(得分:2)

在PowerShell中,

Get-WMIObject -Query "Select * From Win32_PerfFormattedData_PerfProc_Process WHERE PercentProcessorTime>=90"

这有帮助吗?