If you use Windows long enough, you'll run into apps that freeze, refuse to close, or sit at "Not Responding" no matter how many times you click the X. The fix is a force quit, and Windows gives you five different ways to do it. This guide walks through every method that works on Windows 11 (up to 24H2) and Windows 10, ordered from fastest to most thorough — starting with Alt+F4 and ending with taskkill from the command line. We'll also cover what to do when Windows itself locks up, not just a single app.
Table of Contents
- What to Know Before You Force Quit
- Method 1: Alt+F4 (Fastest Shortcut)
- Method 2: Ctrl+Shift+Esc to Open Task Manager Directly
- Method 3: Ctrl+Alt+Delete to Task Manager
- Method 4: Right-Click the Taskbar Icon
- Method 5: taskkill in Command Prompt or PowerShell
- When Windows Itself Is Frozen
- Common Questions
- Summary
What to Know Before You Force Quit
When You Need to Force Quit
You'll know it's time to force quit when you see any of these symptoms:
- "Not Responding" appears in the title bar — clicks on the window do nothing
- The spinning circle (or hourglass) won't go away — the cursor keeps loading and the app ignores input
- The window goes blank — pure white or black — content stops drawing
- The X button does nothing — you click close repeatedly with no effect
- Multiple zombie windows of the same app — the app keeps spawning windows it can't close
In all of these cases, the normal close path is broken, so you have to kill the underlying process instead.
The One Risk to Understand
Force quitting is a last resort for one reason: any unsaved work is gone. Documents in Word, sheets in Excel, text in editors, edits in Photoshop — if you haven't saved, the changes vanish the moment the process dies. Before you force quit, try Ctrl+S once. Sometimes the save command sneaks through even on a "Not Responding" app. If that fails and the app has AutoSave (most modern Office and Adobe apps do), you'll get the most recent autosave back when you reopen it.
Quick Comparison of the 5 Methods
| Method | Speed | Difficulty | When to Use |
|---|---|---|---|
| 1. Alt+F4 | ★★★ Fastest | Easy | The window is at least selectable |
| 2. Ctrl+Shift+Esc | ★★★ | Easy | Desktop responsive, want the full Task Manager |
| 3. Ctrl+Alt+Delete | ★★ | Easy | Desktop is sluggish or partly frozen |
| 4. Taskbar right-click | ★★ | Easy | Mouse only, multiple windows to close |
| 5. taskkill command | ★ | Hard | GUI is dead or you want to script it |
The natural order is Alt+F4 first, then Ctrl+Shift+Esc. Most cases resolve at one of those two steps.
Method 1: Alt+F4 (Fastest Shortcut)
This is the quickest path to a force quit. If the frozen window is at least selectable, try this before anything else.
- Click the frozen window to make it active (or use Alt+Tab to switch to it if clicking is failing)
- Press Alt+F4
- If the app is responsive, it closes normally
- If it's not, wait a couple of seconds — Windows pops up a "This program is not responding" dialog
- Click "End Now" or "Close the program" to kill it
Alt+F4 is technically a "close the active window" shortcut, but Windows automatically falls back to a force-quit prompt for unresponsive apps. There's no faster way to handle a frozen window if you're already on it.
One trap: if the desktop is the active surface, Alt+F4 opens the Shut Down Windows dialog. Always click into the frozen app's window first so it has focus.
Key takeaway: Alt+F4 is your one-shot keyboard answer to a hung app. Make sure the window is focused, and Windows handles the rest.
Method 2: Ctrl+Shift+Esc to Open Task Manager Directly
This is the shortest path to Task Manager, which is the right tool when Alt+F4 doesn't shake the app loose or when you want to clean up several apps at once.
- Press Ctrl+Shift+Esc
- Task Manager opens (the first time it may show in compact view — click "More details" if you see it)
- On the Processes tab, find the misbehaving app — usually marked "Not Responding"
- Select it and click "End task" in the bottom right
Windows 11's Task Manager highlights non-responding apps with a subtle red tint, and the same screen shows live CPU and memory usage. That makes it easy to spot a runaway process eating 100% of a core or hogging RAM.
Switch to the Details tab if you need to kill background helpers — things like msedgewebview2.exe or helper.exe that the parent app spawns and doesn't always clean up. End them individually from there.
Key takeaway: Ctrl+Shift+Esc skips the Ctrl+Alt+Delete security screen and drops you straight into Task Manager. It's the workhorse shortcut for handling unresponsive apps.
Method 3: Ctrl+Alt+Delete to Task Manager
The classic three-finger salute is Windows' most privileged keyboard interrupt. The OS handles it before almost anything else, so it tends to work even when other shortcuts don't.
- Press Ctrl+Alt+Delete
- The blue security screen appears
- Click "Task Manager"
- From there it's the same End task flow as Method 2
Use this when Ctrl+Shift+Esc isn't responding — Ctrl+Alt+Delete sits at a lower level than Task Manager itself, so it can break through where regular shortcuts can't. The same screen also has Sign Out, Lock, Switch User, and the power icon for restart and shutdown, which makes it the right entry point when the whole desktop is half-dead, not just one app.
Key takeaway: Ctrl+Alt+Delete is the OS-level fallback. When other shortcuts fail, this one usually still works.
Method 4: Right-Click the Taskbar Icon
If you'd rather use the mouse, the taskbar gives you a clean way to close a frozen app without any keyboard shortcuts.
- Right-click the misbehaving app's icon in the taskbar
- At the bottom of the jump list, click "Close window" — or "Close all windows" if there are several
- If the app is hung, the same "End Now" / "Close the program" dialog appears
- Click through to kill the process
If the app has multiple windows open, "Close all windows" closes them in one shot. That's faster than chasing each window individually. A taskbar icon that looks slightly dimmed or has a subtle exclamation mark is your visual cue that the app has stopped responding. If the right-click menu itself doesn't open, the whole shell is starting to lock up — bail to Ctrl+Alt+Delete.
Key takeaway: The most natural mouse-only option, with the bonus of closing every window of an app at once.
Method 5: taskkill in Command Prompt or PowerShell
When the GUI has stopped responding entirely — or when you want a repeatable command you can save in a script — taskkill is the answer. It's an admin-level tool and works the same way in Command Prompt and PowerShell.
Open a terminal first: Start menu → "Terminal" or search for "cmd" or "powershell".
List running processes (tasklist)
Find the process name or PID for the app you want to kill.
tasklistTo narrow it down to a specific app:
tasklist | findstr chromeThe first column is the image name (e.g. chrome.exe), the second is the PID. Note one or the other.
Force quit by image name
taskkill /IM chrome.exe /F/IM targets by image name and /F forces termination. For an app like Chrome that runs many processes, this kills all instances at once.
Force quit by PID
taskkill /PID 1234 /FUse the PID when you want to kill exactly one instance of a multi-process app — handy for putting down a single runaway helper without nuking the parent.
Kill the whole process tree
taskkill /IM chrome.exe /F /TAdd /T to take down every child process the target spawned. This is the cleanest way to make sure no orphan helpers stay running after the parent dies.
If you get "Access denied"
System-level processes need admin rights. Right-click "Command Prompt" in the Start menu, choose "Run as administrator", and run the same command from the elevated shell.
Key takeaway: taskkill /IM <name> /F or taskkill /PID <pid> /F is the last-resort hammer when the GUI is dead. It's also the only one of these methods you can put in a script.
When Windows Itself Is Frozen
Tell Whether It's One App or the Whole OS
Before you reach for any of the methods above, check what's actually frozen:
- The cursor moves and other apps respond → one app is hung. Use Methods 1–5 above
- The cursor doesn't move and the keyboard does nothing → Windows itself has frozen, and force-quitting an app won't help
- The screen is black but the power LED is on → could be a display issue. Tap a key or the power button once to wake it
If Windows Itself Has Locked Up
When the OS as a whole is unresponsive, you need a force shutdown or restart, not an app-level kill. Don't go straight to a 10-second power-button hold — there are safer options to try first, plus important checks to run after the system comes back. The full sequence (and why each step matters) is here:
▶ How to Force Shutdown or Restart Windows | What to Try Before Holding the Power Button
A force shutdown discards unsaved data and can leave the file system in a slightly inconsistent state. If Ctrl+Alt+Delete still responds, restarting from there is much safer than pulling the plug.
Common Questions
Will I Lose My Unsaved Data?
Yes — anything you hadn't saved when the force quit hit is gone. The exceptions are apps with AutoSave or session recovery: Office, Adobe Creative Cloud, and most modern browsers will offer to restore the most recent autosaved version when you reopen them. Word and Excel show a "Document Recovery" pane on next launch with the file as it was just before the crash. Browsers offer "Restore session" so your tabs come back.
Even on a frozen app, Ctrl+S sometimes squeezes through before you force quit. It costs nothing to try once.
What Happens If I Force Quit File Explorer?
File Explorer (explorer.exe) doesn't just handle file windows — it also runs the taskbar, Start menu, and desktop icons. Killing it makes those disappear briefly. Most of the time Windows auto-restarts it within a few seconds and everything comes back.
If it doesn't come back, restart it manually from Task Manager: File → Run new task → type explorer.exe → OK. Force-restarting Explorer is actually a great fix for a flaky taskbar or jittery shell — the shell rebuilds clean and many minor weirdnesses go away.
One App Keeps Needing a Force Quit — Now What?
If the same app freezes over and over, the problem is the app or its environment, not Windows in general. Work through this list:
- Update the app — Microsoft Store or the vendor's site
- Repair install — Settings → Apps → Installed apps → the app → "Modify" or "Repair"
- Reset its cache and settings — most apps have a way to clear local state
- Update your graphics driver — fixes a lot of crashes in graphics-heavy apps
- Run Windows Update all the way through
- Try a clean boot to rule out interference from other apps or services
Deeper diagnosis for apps that crash or won't launch is in How to Fix Apps That Keep Crashing or Won't Launch on Windows.
Task Manager Says "Access Denied"
Some processes — services, drivers, and other system-level pieces — need admin privileges before you can kill them. Close Task Manager, right-click it in the Start menu, and choose "Run as administrator". The same applies to taskkill: launch Command Prompt as admin and rerun the command.
If a system process still refuses to die from an elevated session, leave it alone. Killing it can make Windows unstable. Restart the PC instead — it's the safer fix.
Alt+F4 Doesn't Work in Some Apps
Some full-screen games and exclusive-fullscreen apps grab keyboard input and intercept Alt+F4. When that happens, try one of these:
- Press Win+Tab to switch to a different window first
- Use Ctrl+Shift+Esc to open Task Manager and end the task there
- Press Win+D to drop to the desktop
Even apps that hijack keyboard input can't block Task Manager-driven termination. Ctrl+Shift+Esc is the backup that works against everything.
Summary
Five ways to force quit an app on Windows:
- Alt+F4 — fastest path. Auto-prompts to End Now on hung apps
- Ctrl+Shift+Esc — straight to Task Manager. The everyday workhorse
- Ctrl+Alt+Delete — OS-level fallback when other shortcuts won't respond
- Right-click the taskbar — mouse-only, closes multiple windows in one shot
- taskkill — command-line hammer for dead GUIs and scripts
The natural order is Alt+F4 → Ctrl+Shift+Esc → Ctrl+Alt+Delete → taskbar right-click → taskkill. Most cases resolve in the first two steps. If Windows itself is frozen, not just one app, see How to Force Shutdown or Restart Windows. On a Mac, the equivalent guide is 5 Ways to Force Quit Apps on Mac. Make Ctrl+Shift+Esc your reflex when you see "Not Responding", and a frozen app stops being a panic moment.


