The fastest native solution seems to be Win + Tab and then middle-click the Apps to close them.

The best 3rd party solution I found is 7+ Taskbar Tweaker. You can configure it to close Tasks by middle-click to the tasks entry immediately in the task bar. Unfortunately, Taskbar Tweaker seems to be tailor-fit very closely to Windows and broke with every major update (Anniversary, Creator). The maintainer each time fixed it within some weeks, but meanwhile everything defaults to the old behavior of opening new instances instead of closing old ones.

Answer from Sascha on Stack Exchange
๐ŸŒ
The Windows Club
thewindowsclub.com โ€บ the windows club โ€บ how to close running apps on windows 11
How to close running Apps on Windows 11
July 7, 2025 - Another easy method to close a running application is to use the keyboard shortcut key. You can press the ALT+F4 key combination to quickly close an app.
๐ŸŒ
Digital Citizen
digitalcitizen.life โ€บ close-apps-windows-10
8 ways to close apps in Windows 10 like a Pro | Digital Citizen
October 5, 2025 - This works in Windows 10's desktop and Tablet mode. Press the Ctrl, Alt, and Tab keys simultaneously In the Task switcher, you can see previews of all the open windows of your active apps.
Discussions

How can I gracefully close all open apps except Explorer with one click or keystroke?
How "gracefully" are you talking? There are multiple ways to close a program. The batch file/PowerShell method might be graceful or not, depending on exactly which commands you used. One option is to forcefully terminate each process/process group before shut down. There are also commands to gracefully ask a program to terminate. Generally it's the same command (taskkill/Stop-Process), without the /f/-force parameter. You can also interact with the program's GUI to close it, eg. using Alt+F4 keyboard shortcut,or clicking the X button in the top right (if there is one), or using File->Close in the menu bar (if it has one), or right-clicking the program icon in the taskbar and selecting Close Window. Applications may respond differently between graceful requests to terminate from the OS, and the GUI options to close. For example you mentioned Chrome, where the behaviour to automatically reopen tabs only occurs if the GUI is used to close the browser (and the option to automatically restore tabs is set), but not if you forcefully close it via command line (taskkill /f /IM chrome.exe). However it will restore tabs if you do it gracefully (taskkill /IM chrome.exe). Not all programs will necessarily behave the same way, however both Chrome and Word do.If you want to ensure you get the desired behaviour, the only reliable way to reproduce a GUI close is to use automation tools to simulate the same GUI interaction. You mentioned AutoHotKey in another comment, and yes that's one solution to achieve this. The problem is, if you want to automate this GUI interaction you also need to handle scenarios where the program refuses to close. Like in Word or Notepad, if you have an unsaved document, the GUI methods will prompt the user to save changes first. Each program will behave differently, so you'll need to account for every app you might possibly have open, and the different behaviours it might have to different states. At that point you either have an overly complicated automation, or you only have partial automation with user intervention required to handle any exceptions. Or you just accept the fact that terminating gracefully via command line is the easiest solution, even if some applications might not handle it the way you want. If you're willing to dig deeper, you might be interested in ARSO. But it'll only work with applications that explicitly support it, and I don't know of any way to trigger it manually. More on reddit.com
๐ŸŒ r/techsupport
14
0
June 20, 2024
Is there a Windows 10 shortcut to force quit apps? (for programs that prevent Alt+F4)
With the HotkeyP, you can create any shortcut to kill the active program/window, use the command "Terminate process". HotkeyP - keyboard/mouse/gamepad mapper (AutoHotkey alternative - but much easier to use, lightweight, many features, e.g. macros, hide window, opacity, change wallpaper, magnifier, volume, mute, disable key - like CapsLock...) More on reddit.com
๐ŸŒ r/windows
7
5
November 4, 2019
How to close all background programs in Windows?
It becomes so bad that you have to buy a whole new computer. Why would you have to buy a new computer when you can simply clean install? More on reddit.com
๐ŸŒ r/Windows10
19
4
August 20, 2022
Is there a way to force close an app in windows
๐ŸŒ r/techsupport
28
2
March 26, 2024
๐ŸŒ
Verificient
verificient.freshdesk.com โ€บ support โ€บ solutions โ€บ articles โ€บ 1000325125-ways-to-force-quit-apps-or-programs-on-a-windows-pc
Ways to force quit apps or programs on a Windows PC : Support
To quickly force quit on Windows, use the keyboard shortcut Alt + F4. You can also force quit on Windows by using Task Manager or Command Prompt. If these methods don't work, try restarting your computer. How to force quit on Windows usin...
๐ŸŒ
HelloTech
hellotech.com โ€บ home โ€บ how to force quit an app on a windows 10 pc
How To Force Quit an App on a Windows 10 PC : HelloTech How
January 25, 2024 - You have to select the application, so your computer knows that thatโ€™s the one youโ€™re trying to close. Next, press the Alt + F4 keys at the same time. The F4 key is at the top of your keyboard, while the Alt key is to the left of most keyboards.
๐ŸŒ
Reddit
reddit.com โ€บ r/techsupport โ€บ how can i gracefully close all open apps except explorer with one click or keystroke?
r/techsupport on Reddit: How can I gracefully close all open apps except Explorer with one click or keystroke?
June 20, 2024 -

I'm doing some testing and frequently need to gracefully close all open apps either before running a program or rebooting. The batch file and PowerShell methods I've tried shut down chrome improperly, so I need to restore all open tabs. I want to simulate closing the app manually.

The main apps I typically have open are Chrome, Word, Titan Mail, Thunderbird, an image management program, Photoshop, possibly other Office or Adobe programs, and Notepad.

Top answer
1 of 2
2
How "gracefully" are you talking? There are multiple ways to close a program. The batch file/PowerShell method might be graceful or not, depending on exactly which commands you used. One option is to forcefully terminate each process/process group before shut down. There are also commands to gracefully ask a program to terminate. Generally it's the same command (taskkill/Stop-Process), without the /f/-force parameter. You can also interact with the program's GUI to close it, eg. using Alt+F4 keyboard shortcut,or clicking the X button in the top right (if there is one), or using File->Close in the menu bar (if it has one), or right-clicking the program icon in the taskbar and selecting Close Window. Applications may respond differently between graceful requests to terminate from the OS, and the GUI options to close. For example you mentioned Chrome, where the behaviour to automatically reopen tabs only occurs if the GUI is used to close the browser (and the option to automatically restore tabs is set), but not if you forcefully close it via command line (taskkill /f /IM chrome.exe). However it will restore tabs if you do it gracefully (taskkill /IM chrome.exe). Not all programs will necessarily behave the same way, however both Chrome and Word do.If you want to ensure you get the desired behaviour, the only reliable way to reproduce a GUI close is to use automation tools to simulate the same GUI interaction. You mentioned AutoHotKey in another comment, and yes that's one solution to achieve this. The problem is, if you want to automate this GUI interaction you also need to handle scenarios where the program refuses to close. Like in Word or Notepad, if you have an unsaved document, the GUI methods will prompt the user to save changes first. Each program will behave differently, so you'll need to account for every app you might possibly have open, and the different behaviours it might have to different states. At that point you either have an overly complicated automation, or you only have partial automation with user intervention required to handle any exceptions. Or you just accept the fact that terminating gracefully via command line is the easiest solution, even if some applications might not handle it the way you want. If you're willing to dig deeper, you might be interested in ARSO. But it'll only work with applications that explicitly support it, and I don't know of any way to trigger it manually.
2 of 2
1
You can't do it gracefully... Curiosity why/what makes you need this?
๐ŸŒ
Business Insider
businessinsider.com โ€บ business insider โ€บ 3 ways to force quit apps or programs on a windows pc
How to Force Quit Apps or Programs on Windows
December 7, 2022 - To quickly force quit on Windows, use the keyboard shortcut Alt + F4. You can also force quit on Windows by using Task Manager or Command Prompt. If these methods don't work, try restarting your computer.
Find elsewhere
๐ŸŒ
MakeUseOf
makeuseof.com โ€บ home โ€บ windows โ€บ 8 different ways to close apps and programs on windows
8 Different Ways to Close Apps and Programs on Windows
December 25, 2022 - Right-click on the title bar of the app window, and select Close from the context menu that appears. You can also press Alt + Spacebar to access the title bar menu and then press the C key on your keyboard to close the app window.
๐ŸŒ
CCleaner
ccleaner.com โ€บ knowledge โ€บ 5-ways-to-force-quit-any-frozen-app-on-windows
How to force quit on a Windows PC โ€” CCleaner
Learn how to force quit on a Windows PC whether you're dealing with a frozen program or an unresponsive computer using various methods.
๐ŸŒ
Ascendant USA
ascendantusa.com โ€บ 2024 โ€บ 12 โ€บ 23 โ€บ force-quit-apps-on-windows
How to Force Quit Apps on Windows | Ascendant
December 30, 2025 - F4 keyboard combination is a straightforward and commonly recognized technique for forcefully exiting an application. To execute this action, you must maintain holding down the โ€˜Altโ€™ key while tapping โ€˜F4โ€™. This process shines when you ...
๐ŸŒ
Reddit
reddit.com โ€บ r/windows โ€บ is there a windows 10 shortcut to force quit apps? (for programs that prevent alt+f4)
r/windows on Reddit: Is there a Windows 10 shortcut to force quit apps? (for programs that prevent Alt+F4)
November 4, 2019 - What I end up doing sometimes when the program won't close nor minimize is use Ctrl+Shift+Esc, see which program is selected in it through the Alt+Tab thumbnail, and use the arrow keys to navigate and kill the program.
๐ŸŒ
Digacore
digacore.com โ€บ blog โ€บ force-quit-windows-close-frozen-apps
Force Quit Windows: Easy Ways To Close Frozen Apps In 2025
October 29, 2025 - The process is safe when used right, ... these clear steps to stop a non-responsive app right away: Open Task Manager Press Ctrl + Shift + Esc on your keyboard....
Price ย  $
Call ย  +1 732-646-5725
Address ย  160 Airport Rd,, 08701, Lakewood
๐ŸŒ
How-To Geek
howtogeek.com โ€บ home โ€บ windows โ€บ how to force quit an app on windows 10
How to Force Quit an App on Windows 10
February 6, 2024 - To open Task Manager, you can press Ctrl+Shift+Esc on your keyboard or right-click the Windows task bar and select โ€œTask Managerโ€ from the menu. With Task Manager open, select the task you want to force quit and then select โ€œEnd Task.โ€ ...
๐ŸŒ
Support Your Tech
supportyourtech.com โ€บ home โ€บ articles โ€บ how to close apps on windows 10: a step-by-step guide for users
How to Close Apps on Windows 10: A Step-by-Step Guide for Users
September 10, 2024 - If the app has unsaved work, it might prompt you to save before closing. Press the Alt key and the F4 key simultaneously while the app is active. This keyboard shortcut is a quick way to close the current app.
๐ŸŒ
Quora
quora.com โ€บ How-do-I-close-apps-in-Windows-10
How to close apps in Windows 10 - Quora
Answer (1 of 4): Method 1 of 2:Closing Apps in Regular (Desktop) Mode 1. Use the โœ• button window control. Move your mouse to the top-right. Be sure to hover over the โœ• button.
๐ŸŒ
Reddit
reddit.com โ€บ r/windows10 โ€บ how to close all background programs in windows?
r/Windows10 on Reddit: How to close all background programs in Windows?
August 20, 2022 -

We've all seen this happen. When you first buy a Windows PC, it seems to operate like a breeze. Programs open up and run with no difficulty.

Then after several months everything slows up. It becomes so bad that you have to buy a whole new computer. The assumption is there are some background processes that continue to run that prevent the computer from running more quickly. So how can you close all those background processes?

I know about opening the Task Manager. But there are usually so many processes running you can't tell which ones are essential for Windows to operate. I have tried shutting down some processes at random but I almost always get the warning "this is a system process and can't be shut down."

So can we shut down all those background processes so the computer is back to original pristine state and only the processes for the one program you want to run are operating?

Top answer
1 of 7
11
It becomes so bad that you have to buy a whole new computer. Why would you have to buy a new computer when you can simply clean install?
2 of 7
4
The PC I am currently using I built in 2014. I installed Windows 8.1 at the time, and upgraded through Windows 10 until today. I think the "Windows rot" people always refer to, where they claim how WIndows gets slower over time, is really just bad maintenance. over time. People install a bunch of stuff on their machines but never take the time to "clean up" the system. It's like if you live in a house and never tidy up. It's going to start looking like shit, but nobody calls it "house rot". Some people propose reinstalling windows every X amount of time to "avoid" this problem. Which to me is sort of like buying a new house to avoid sweeping and vacuuming. But there are usually so many processes running you can't tell which ones are essential for Windows to operate. On the details tab you can see the actual executables. You can right-click them and go to their location and then check the properties of the file. You can also check Services in the services list. "Autoruns" can be used to investigate services and scheduled tasks and can filter out microsoft ones to see what other software might be plopping onto your system. A lot of programs like to slap in scheduled tasks and updater services and stuff. Did you know that Chrome install adds a scheduled task to take an inventory of all the software on your computer? Not sure if it sends it to google but I always felt it was a waste of my computers resources either way. Software like ShellExView can see/disable shell extensions. I use this to remove right-click context menu extensions because a lot of software adds itself there when it really has no purpose being there. This will also show if there are registrations for shell extensions that no longer exist- uninstalled programs that didn't properly unregister themselves. These could impact performance as Windows tries to instantiate the non-existent components.
๐ŸŒ
ZDNET
zdnet.com โ€บ home โ€บ tech โ€บ services & software โ€บ operating systems โ€บ windows
How to force-quit applications in Windows | ZDNET
May 14, 2024 - In Windows 10 or 11, right-click the Start button and select Task Manager from the menu or press Ctrl+Shift+Esc. If Task Manager opens in compact view, you can click the button for More details to see the full view.
๐ŸŒ
The Verge
theverge.com โ€บ how to โ€บ tech โ€บ microsoft
How to force quit an app in Windows | The Verge
October 14, 2022 - Press Alt + F4 (and maybe also Fn, depending on how your Function row is programmed). This will close whatever application you currently have selected.