1
votes

We are working on a remote management software using WMI. I have a problem in getting process list from a remote device which is running with >90% CPU usage. Most of the time my WMIC command gets timed out. I am querying Win32_Process remotely Any solutions?

1

1 Answers

2
votes

In PowerShell,

Get-WMIObject -Query "Select * From Win32_PerfFormattedData_PerfProc_Process WHERE PercentProcessorTime>=90"

Does that help?