iSumsoft » Resources » Windows 10 » 3 Ways to Force Quit an Unresponsive Program in Windows 10 PC

3 Ways to Force-quit an Unresponsive Program in Windows 10 PC

Isabella Shinn
Isabella Shinn

Updated:

When using apps/programs on the computer, sometimes one program might experience long pauses or periods of unresponsiveness. You even cannot close the program by clicking the X button in its upper right corner. In this case, you would want a way to force the program to quit. Now, this post will show you three ways to force an unresponsive program to quit in Windows 10.


Way 1: Force an unresponsive program to quit using keyboard shortcut

When a program freezes up or does not respond for a long while and the X button does not work, you can try to force it to quit by pressing the Alt + F4 key on your physical keyboard. The Alt + F4 keyboard shortcut can force a program to quit when the program's window is selected and active. When no window is selected, pressing Alt + F4 will force your computer to shut down.

Press Alt and F4

Tips: Alt + F4 might not work for some cases. If Alt + F4 doesn't work for your case, use any of the methods below.

Way 2: Force an unresponsive program to quit using Task Manager

Task Manager is the most common way to quickly end a process or program on Windows computer.

Step 1: Open the Task Manager by pressing Ctrl + Shift + Esc keyboard shortcut or by right-clicking on your Windows 10 taskbar and then selecting Task Manager.

Step 2: If the Task Manager is displayed with a simple interface, click the More details button on the lower left corner to display its full screen.

Step 3: Select the Processes tab, and you will find the unresponsive program under the Apps section. To force the program to quit, just click on the program to highlight it, and then click the End task button in the lower right corner of the Task Manager window, or right-click on the program, and select End task.

Click End task

Way 3: Force an unresponsive program to quit using Command Prompt

Sometimes, even Task Manager might not work. Then you have to use Command Prompt to terminate an unresponsive program. Here are the steps.

Step 1: Open a Command Prompt window by pressing Win + X and then select Command Prompt.

Step 2: Type tasklist and press Enter key. This will list all currently running tasks and programs on the computer. You can find the unresponsive program's name from the list.

Run tasklist

Step 3: Type taskkill /im program_name.exe and press Enter key. For example, in my case, I want to force the Excel program (i.e. Excel.exe) to quit, so I type taskkill /im excel.exe and press Enter. If everything went right, the command will run successfully, and the message "Sent termination signal to the process Excel.exe with PID 5972" is displayed on the screen. The PID means the Process id which was defined by the Windows system.

Kill task with command