How to Force Close an App on a Mac (Every Method Explained)

When an app on your Mac freezes, spins the rainbow wheel, or stops responding entirely, waiting it out isn't always an option. Force closing — also called force quitting — terminates the app process immediately, bypassing the normal quit sequence. Here's how to do it, why it works, and what to consider depending on your situation.

What "Force Close" Actually Means on macOS

A regular quit (Command + Q) sends a polite shutdown signal to the app, giving it time to save state, close files, and clean up. Force quitting skips all of that and kills the process directly. macOS terminates it at the system level, which is why the app disappears immediately — but also why unsaved work is typically lost.

This is distinct from an app being slow. If an app is just taking time to process something, force quitting can interrupt important background tasks. The right time to use it is when an app is genuinely unresponsive — usually indicated by the "Application Not Responding" label in the Force Quit window, or when the app doesn't respond to any clicks or keyboard input.

The Four Main Ways to Force Close on a Mac

1. The Force Quit Menu (Easiest for Most Users)

Press Command + Option + Escape simultaneously. This opens the Force Quit Applications window — macOS's built-in task manager equivalent. Any apps currently unresponsive will appear in red with the label "not responding."

Select the app and click Force Quit. You can also select multiple apps at once if more than one is frozen.

This method works system-wide and doesn't require you to have the frozen app in focus, which matters when an app has locked up your cursor interaction.

2. Force Quit from the Apple Menu

Click the Apple logo (🍎) in the top-left corner of the screen and select Force Quit from the dropdown. This opens the same Force Quit Applications window as the keyboard shortcut. Useful if you prefer menu navigation or the keyboard shortcut isn't responding.

3. Right-Click the Dock Icon

If you can see the app's icon in the Dock:

  1. Right-click (or Control-click) the icon
  2. If the app is responsive, you'll see Quit — hold the Option key to change it to Force Quit
  3. Click Force Quit

This is a quick method when the app is visible in the Dock but not responding to normal interaction.

4. Force Kill via Terminal (Advanced)

For users comfortable with the command line, Terminal gives you more precise control:

Step 1 — Find the process ID:

ps aux | grep [AppName] 

Or use:

top 

Step 2 — Kill the process:

kill [PID] 

For a harder kill that the process cannot ignore:

kill -9 [PID] 

The kill -9 command sends a SIGKILL signal, which forces immediate termination with no cleanup. This is the most aggressive option and is typically reserved for processes that resist even the standard force quit methods — background processes, daemons, or apps that relaunch themselves automatically.

Which Method to Use Depends on a Few Variables

SituationBest Method
App is frozen, visible on screenCommand + Option + Escape
Cursor is partially unresponsiveApple Menu → Force Quit
App is in the DockRight-click + Option key
Background process won't quitTerminal with kill -9
Multiple apps frozen at onceForce Quit window (select all)

The right method also depends on your comfort level. The keyboard shortcut and Apple Menu approaches are designed to be safe and accessible for all users. Terminal commands are powerful but require accuracy — a mistyped process ID could terminate the wrong process.

What Happens to Your Data When You Force Quit

This is where individual setup matters significantly. Apps that use autosave (most modern macOS apps, including Pages, Numbers, and TextEdit) may recover recent work automatically when relaunched. Apps with manual save workflows — older software, some professional tools, certain third-party apps — will lose anything not previously saved.

Some apps, like Microsoft Word and Adobe apps, have their own autosave or recovery systems that operate independently of macOS. Whether those kick in after a force quit depends on the app version, how it was configured, and whether the crash occurred before the last autosave interval completed.

Force Quitting Finder

Finder is a special case. You can't truly quit Finder the way you quit other apps — but you can relaunch it, which has a similar effect. In the Force Quit window, select Finder and click Relaunch instead of Force Quit. This restarts the Finder process, which often resolves freezes, unresponsive desktop interactions, or missing menu bar elements.

When Force Quitting Doesn't Work 🔄

Occasionally, an app won't respond even to a force quit command. This can happen with processes that have deep system hooks, corrupted app states, or certain background services. In those cases:

  • Activity Monitor (found in Applications → Utilities) gives you a full list of running processes and lets you force quit from there — sometimes catching processes the standard window misses
  • Restarting the Mac is the most reliable fallback, as a reboot clears all running processes regardless of state

Activity Monitor is also useful for identifying why an app froze — high CPU or memory usage columns can point to resource exhaustion rather than a software bug, which changes how you'd approach the underlying problem.

The Variables That Affect Your Experience

How force quitting behaves — and how often you need it — varies based on several factors: the macOS version you're running, available RAM (systems with less memory are more prone to app hangs under load), the age and compatibility of the app in question, and whether you're running apps designed for Apple Silicon natively or through Rosetta 2 translation.

An app that freezes regularly on one machine configuration may run without issue on another, even running the same version of macOS. Whether that pattern points to a hardware limitation, a software conflict, or a permissions issue is something only your specific setup can reveal.