0

我正在尝试使用 PowerShell 记录一段时间内 CPU 上的负载。有没有办法在任务管理器中记录 CPU 使用率?我试过这个:Tracking CPU and Memory usage per process。但它没有用。

4

1 回答 1

0

使用带有参数的Get-Countercmdlet :SampleInterval

$interval = 20 #seconds
$counterSample = Get-Counter '\Processor(_Total)\% Processor Time' -SampleInterval $interval
$avgLoad = $counterSample.CounterSamples.CookedValue
于 2017-05-18T11:22:10.270 回答