diff --git a/Fix-HighCPUUsage.ps1 b/Fix-HighCPUUsage.ps1 index 5fa05fd..75972d7 100644 --- a/Fix-HighCPUUsage.ps1 +++ b/Fix-HighCPUUsage.ps1 @@ -1,3 +1,3 @@ # Terminate known high CPU processes -Write-Output "Terminating all running instances of reg.exe and AgentPackageTaskManagement.exe" -'reg', 'AgentPackageTaskManagement' | ForEach-Object { Get-Process -Name $_ -ErrorAction SilentlyContinue | Stop-Process -Force } \ No newline at end of file +Write-Output "Terminating all running instances of reg.exe, AgentPackageTaskManagement.exe, and conhost.exe" +'reg', 'AgentPackageTaskManagement', 'conhost' | ForEach-Object { Get-Process -Name $_ -ErrorAction SilentlyContinue | Stop-Process -Force } \ No newline at end of file