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.

Як розробити гру на Linux
Десять років тому не так багато користувачів Linux передбачали, що їх улюблена операційна система колись стане популярною ігровою платформою для комер...
Open Source Ports of Commercial Game Engines
Free, open source and cross-platform game engine recreations can be used to play old as well as some of the fairly recent game titles. This article wi...
Кращі ігри командного рядка для Linux
Командний рядок - це не просто ваш найбільший союзник при використанні Linux, він також може бути джерелом розваг, оскільки ви можете використовувати ...