Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Close All Open Applications at Once on Windows 11?

Learn how to close all open applications at once on Windows 11. Follow clear steps, practical tips, and troubleshooting advice for common problems.

Table of Contents

This practical guide explains how to close all open applications at once on Windows 11. Follow the steps in order, review the requirements first, and use the troubleshooting notes when a setting or option does not work as expected.

Use Windows PowerShell to close all applications

Step 1:

Type Windows PowerShell in the search bar and then click to open as usual.

Use Windows PowerShell to close all applications screenshot

Step 2:

Then the user enters the command below and presses Enter to execute.

Get-Process | Where-Object { $_.MainWindowHandle -ne 0 } | ForEach-Object { $_.CloseMainWindow() }

This will close all applications including the PowerShell window.

Use Windows PowerShell to close all applications screenshot

Close all open windows with shortcut key

The Alt + F4 shortcut is commonly used to close a specific application or shut down/restart the system. You can use similar shortcuts to close all open applications at once, then trigger the shutdown or restart action.

Press the Alt and F4 keys at the same time to open the Shut Down Window dialog box. Click OK to execute. Windows will automatically close all open applications.

Close all open windows with shortcut key screenshot

Close the specified application on Windows

If you only want to close a few specific applications, creating a batch file can automate the process of closing them all at once.

Open the Notepad application and enter the following command for each application you want to close.

taskkill /IM appname.exe /F

Replace appname.exe with the name of the application you want to close , such as notepad.exe, chrome.exe, winword.exe, etc.

Then you need to save this file with.bat extension. Finally double select this file to execute. All specified applications will be closed immediately.

Close the specified application on Windows screenshot

Close multiple windows of an application

Right-select the application icon on the taskbar and select Close all windows .

Close multiple windows of an application screenshot

Use Alt + Tab

Alt + Tab helps you observe all open application windows, but we still close them manually, which is to select the x icon.

FAQ

What should you know about use Windows PowerShell to close all applications?

Type Windows PowerShell in the search bar and then click to open as usual.

What should you know about close all open windows with shortcut key?

The Alt + F4 shortcut is commonly used to close a specific application or shut down/restart the system. You can use similar shortcuts to close all open applications at once, then trigger the shutdown or restart action.

What should you know about close the specified application on Windows?

If you only want to close a few specific applications, creating a batch file can automate the process of closing them all at once.

What should you know about close multiple windows of an application?

Right-select the application icon on the taskbar and select Close all windows.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.