我正在开发一个脚本来获取w3wp.exe的CPU时间我需要计算进程使用的实际CPU百分比而不是CPU时间,使用get-process我只得到CPU时间。请告诉我获取cpu百分比的计算步骤,就像使用power-shell在任务栏中显示它一样
注意:我不想使用gwmi,因为脚本响应非常慢。我想在性能测试环境中使用这个应用程序,并且不想在处理上应用任何负载。
get-wmiobject Win32_PerfFormattedData_PerfProc_Process
答案 0 :(得分:1)
如何使用Get-Counter:
get-counter '\Process(powershell*)\% Processor Time'