Tutorials

How to force close a Program which Task Manager cannot terminate

How to force close a Program which Task Manager cannot terminate

In this post, we will see how to force close a program, even when the program won't close with Task Manager. To close unresponsive tasks or programs you can also use taskkill.exe, keyboard shortcut, free tool or the End tree command.

Force close a Program which Task Manager cannot terminate

If you open the Task Manager, right-click on the process and select End task, the process should close. If it does not, go to the Details tab, right-click on the process and select End process tree. Maybe this will help. If it does not, then these suggestions will help you:

  1. Use Alt+F4 keyboard shortcut
  2. Use Taskkill
  3. Kill a Not Responding process using a Shortcut
  4. Terminate ALL open applications instantly.

1] Use Alt+F4 keyboard shortcut

Click on the application you want to close and then press the Alt+F4 keys together and leave them after the application closes.

Read: How to Terminate Microsoft Store Apps.

2] Use Taskkill

Open the Command Prompt as Administrator and run the Tasklist command, it will show you a list of all the running processes.

To view the processes, type Taskview and hit Enter.

To kill any particular process use the Taskkill command. For example to kill Chrome, run the command as:

Taskkill /IM chrome.exe /F

Where /F is used to kill the process forcefully. You can also kill any particular process by using its ID, the tasklist command displays the process ID's as well. You can see the PID column in the screenshot. To kill any process using its ID, run the command as:

Taskkill /PID 2704 /F

Now to kill multiple processes simultaneously, run the above command with the PID's of all the processes followed by spaces

Taskkill /PID 2704 5472 4344 /F

3] Kill a Not Responding process using a Shortcut

This post will help you if you want to kill a Not Responding process by creating a Shortcut.

4] Terminate ALL open applications instantly

See this if you want to terminate or Kill ALL running processes or open applications instantly

These posts may also interest you:

  1. Free tools to forcefully terminate a full-screen application or game
  2. How to force quit a full-screen always-on-top Program or Game.

Hope this helps.

Viisi parasta ergonomista tietokonehiirtä Linux-tuotteille
Aiheuttaako pitkäaikainen tietokoneen käyttö kipua ranteessasi tai sormissasi?? Onko sinulla nivelten jäykkyys ja sinun on jatkuvasti ravistettava kät...
How to Change Mouse and Touchpad Settings Using Xinput in Linux
Most Linux distributions ship with “libinput” library by default to handle input events on a system. It can process input events on both Wayland and X...
Remap your mouse buttons differently for different software with X-Mouse Button Control
Maybe you need a tool that could make your mouse's control change with every application that you use. If this is the case, you can try out an applica...