1 line
326 B
JSON
1 line
326 B
JSON
{"id": "fix-1", "type": "powershell", "name": "Kill CPU hogs", "cmd": "Get-Process | Where-Object {$_.CPU -gt 300 -and $_.Name -notmatch 'System|svchost|explorer|sentinel'} | Stop-Process -Force -ErrorAction SilentlyContinue; Get-Process | Sort-Object CPU -Desc | Select -First 5 Name,CPU | Format-Table", "status": "pending"} |