在powershell中为w3wp.exe计算CPU%

时间:2014-07-17 07:11:37

标签: powershell cpu-usage

我正在开发一个脚本来获取w3wp.exe的CPU时间我需要计算进程使用的实际CPU百分比而不是CPU时间,使用get-process我只得到CPU时间。请告诉我获取cpu百分比的计算步骤,就像使用power-shell在任务栏中显示它一样

注意:我不想使用gwmi,因为脚本响应非常慢。我想在性能测试环境中使用这个应用程序,并且不想在处理上应用任何负载。

 get-wmiobject Win32_PerfFormattedData_PerfProc_Process

1 个答案:

答案 0 :(得分:1)

如何使用Get-Counter:

get-counter '\Process(powershell*)\% Processor Time'