【问题标题】:Select query of wmi used to view the process which has max usage of cpu选择wmi查询用来查看cpu使用率最高的进程
【发布时间】:2010-11-18 06:12:50
【问题描述】:

使用 WMI 查看 CPU 使用率最高的最顶层进程的查询是什么?

【问题讨论】:

    标签: process wmi wmi-query


    【解决方案1】:

    使用Win32_PerfFormattedData_PerfProc_Process 类。

    Select IDProcess, Name, PercentProcessorTime from Win32_PerfFormattedData_PerfProc_Process
    

    获得这些信息后,您可以按 PercentProcessorTime 进行排序。它应该可以正常工作。

    【讨论】:

      猜你喜欢
      • 2015-06-06
      • 1970-01-01
      • 2013-12-15
      • 1970-01-01
      • 1970-01-01
      • 2020-10-08
      • 2010-09-08
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多