Sign in

What's the windows powershell command to get top 5 processes consuming high CPU?

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Get-Process | Sort-Object -Property CPU -Descending | Select-Object -First 5
copied