Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在开发使用 WMI 的远程管理软件。我在从 CPU 使用率 >90% 的远程设备获取进程列表时遇到问题。大多数情况下,我的 WMIC 命令都会超时。我正在远程查询 Win32_Process 有什么解决方案吗?
在 PowerShell 中,
Get-WMIObject -Query "Select * From Win32_PerfFormattedData_PerfProc_Process WHERE PercentProcessorTime>=90"
这有帮助吗?