agent: |
c8ugKYEASxzm1kaBI7YqWhat's the windows powershell command to get top 5 processes consuming high memory?
What's the windows powershell command to get top 5 processes consuming high memory?
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 WorkingSet -Descending | Select-Object -First 5
copied