WiseCleaner Think Tank
Encounter difficult computer problems?
All about maintenance and optimization of your Windows System.
Sep 21, 2026
Task Manager is a useful Windows tool for closing unresponsive applications and managing background processes. However, sometimes clicking End task does nothings—the stubborn process keeps running, consuming CPU and memory. This can happen because of insufficient permissions, a stuck process, dependencies between processes, or temporary system issues. If Task Manager can't end a task normally, try the following methods.
If the problem is limited to a normal application that is not responding correctly, Alt + F4 may close it without using Task Manager.
1. Click once on the frozen application window to make it active.
2. Press Alt + F4.
3. Wait a few seconds for Windows to close the application.
Keep in mind that Alt + F4 is not a forced termination method. If the application is completely unresponsive, it may ignore the close request just as it ignores Task Manager's "End Task" button. In that case, use one of the more forceful methods below.
When a process has related child processes, ending only the main process may not be enough. Task Manager's End process tree option can terminate the selected process along with its associated child processes.
1. Press Ctrl + Shift + Esc to open Task Manager.
2. Click Details in the left navigation pane.
3. Locate the process that cannot be closed. Right-click the process and select End process tree.
4. Click End process tree again if Windows asks for confirmation.
The taskkill command can forcibly terminate a running process when Task Manager cannot do it.
1. Press Win + S, type Command Prompt, and select Run as administrator.
2. In Command Prompt, type the following command and press Enter:
taskkill /f /im processname.exe
Replace processname.exe with the actual process name (e.g., notepad.exe).
3. If you're unsure of the process name, you can first run tasklist to see all running processes and their names. For multiple instances of the same application, you can target a specific process by its PID (Process ID):
taskkill /pid PID_Number /f
Replace PID_Number with the actual number.
4. To kill all non-responsive processes at once, you can use a filtered command:
taskkill /f /fi "status eq not responding"
This command forcefully terminates only processes that are currently in a "Not Responding" state, making it a convenient shortcut for quickly cleaning up frozen applications.
PowerShell provides another way to stop processes when Task Manager's End task option is not working.
1. Press Win + S, type PowerShell, and select Run as administrator.
2. To terminate a process by name, type:
Stop-Process -Name "ProcessName" -Force
Replace "ProcessName" with the actual process name (e.g., Stop-Process -Name "notepad" -Force).
You can also terminate a process by its ID:
Stop-Process -Id 1234 -Force
If Task Manager consistently fails to end tasks, the problem may be tied to a corrupted user profile. Creating a new administrator profile can help you determine whether the issue is profile-specific and often resolves unexplained system tool failures.
Task Manager failures can be frustrating, but they don't mean you're stuck. A little troubleshooting usually restores control, and persistent problems may point to a deeper issue worth fixing. The solutions in this guide range from quick built-in options to more forceful commands and system-level troubleshooting, so you can choose the approach that matches the situation.
wisecleaner uses cookies to improve content and ensure you get the best experience on our website. Continue to browse our website agreeing to our privacy policy.
I Accept