Skip to content
Follow
Windows

How to Close All Open Apps in Windows 11 at once

Richard
Written by
Richard
Feb 4, 2026 Updated Jun 19, 2026 2 min read
How to Close All Open Apps in Windows 11 at once
How to Close All Open Apps in Windows 11 at once

Want to quickly clear out all your open applications in Windows 11?

Open apps are the programs currently running on your PC, like your web browser or a document editor. Sometimes, dozens of these can pile up, slowing down your system.

Closing them all at once frees up system resources and can fix small software glitches. This method is especially useful when you need a clean slate before starting a demanding task or want to speed up your PC.

Windows 11 users can access and use the built-in Task Manager to close all open apps efficiently. The Task Manager, a system tool available since Windows 95, lists all running programs and allows users to end their processes quickly, freeing up system resources.

⚡ Quick Answer

Open Windows Terminal, select Command Prompt or PowerShell, and run the command “Get-Process |? {$_.MainWindowTitle -ne “” -and $_.Id -ne $PID -and $_.ProcessName -ne “explorer”} | Stop-Process -Force”. This closes all apps except essential system processes. Be aware that unsaved work will be lost.

How to Force Close All Open Apps Using Command Prompt

Closing all apps in Windows 11 at once is easy with the Command Prompt; you can use a quick command to shut down everything that’s open.

  1. Click the Start button and type Windows Terminal.
  2. Press Enter to open it.
  3. Click the down arrow (˅) next to the plus (+) tab at the top.
  4. Choose Command Prompt from the menu.
  5. Copy and paste this command into the Command Prompt window:

    PowerShell -Command "Get-Process |? {$_.MainWindowTitle -ne "" -and $_.Id -ne $PID -and $_.ProcessName -ne "explorer"} | Stop-Process -Force"
  6. Press Enter to run the command.
⚠️Warning
This command closes all apps except File Explorer and Windows Registry Editor.
Open Windows Terminal and select Command Prompt
Open Windows Terminal and select Command Prompt

How to Force Close All Open Apps Using PowerShell

You can also close all apps in Windows 11 using PowerShell, which is a bit more powerful than Command Prompt for managing your computer.

  1. Click the Start button and type Windows Terminal.
  2. Press Enter to open it.
  3. Click the down arrow (˅) next to the plus (+) tab at the top.
  4. Select PowerShell from the menu.
  5. Copy and paste this command into the PowerShell window:

    Get-Process |? {$_.MainWindowTitle -ne "" -and $_.Id -ne $PID -and $_.ProcessName -ne "explorer"} | Stop-Process -Force
  6. Press Enter to run the command.
⚠️Warning
This also closes all running apps except File Explorer and Windows Registry Editor.
PowerShell in Windows Terminal
PowerShell in Windows Terminal

Summary

  • You can close all open apps in Windows 11 quickly using Command Prompt or PowerShell.
  • These commands close all apps except important system programs like File Explorer.
  • This method frees up your computer’s memory and can help fix problems caused by many apps running at once.
  • Warning: Use these commands carefully. Any unsaved work in your apps will be lost.

Closing all apps in Windows 11 at once can be done using either Command Prompt or PowerShell, helping to free up your computer’s resources.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Change Tab Colors in Windows Terminal
Windows How to Change Tab Colors in Windows Terminal
How to Set Windows Terminal to Open with Command Prompt on Windows 11
Windows How to Set Windows Terminal to Open with Command Prompt on Windows 11
How to Open Command Prompt at Boot in Windows 11
Windows How to Open Command Prompt at Boot in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *