agent: |
SecMBFNJEWnTE6yeY2ilWhat's the windows powershell command to get top 5 processes consuming high CPU?
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.
inputs
outputs
Get-Process | Sort-Object -Property CPU -Descending | Select-Object -First 5
copied