Script to monitor cpu time for each process for multiple Windows systems

141 Views Asked by At

I'm trying to monitor the CPU time for all processes running on multiple computers in order to track down which process could be taxing the CPU at specific times. I'd like to be able to collect the usage and export it to a csv for further review. Here's what I have so far but it only works for a single system. Thanks!

Script:

while ($true) {
  Get-Counter '\Process(*)\% Processor Time' | Select-Object -ExpandProperty countersamples| Select-Object -Property instancename, cookedvalue| ? {$_.instanceName -notmatch "^(idle|_total|system)$"} | Sort-Object -Property cookedvalue -Descending| Select-Object -First 10| ft InstanceName,@{L='CPU';E={($_.Cookedvalue/100/$env:NUMBER_OF_PROCESSORS).toString('P')}} -AutoSize 
} 

I have tried the code above but it is limited to one system and I am unable to export the results for further review.

0

There are 0 best solutions below