我正在运行这个 Powershell 命令:
Get-counter -Counter "\Processor(_Total)\% Processor Time" – 连续
我在http://technet.microsoft.com/en-us/magazine/ee872428.aspx上找到的
我正在使用它来监视 CPU,但是在运行它大约一分钟后发生了这个错误(导致它停止):
Get-Counter : A counter with a negative denominator value was detected.
At line:1 char:12
+ Get-counter <<<< -Counter "\Processor(_Total)\% Processor Time" -Continuous
+ CategoryInfo : InvalidResult: (:) [Get-Counter], Exception
+ FullyQualifiedErrorId : CounterApiError,Microsoft.PowerShell.Commands.GetCounterCommand
是什么导致了这种情况发生?我能做些什么来防止这种情况,所以命令不会像这样中止(比如抑制错误)?
不过,我无法定期重现此内容。