MainspringGuides › Quit Finder on Mac
macOS Guide

How to quit Finder on Mac

Updated 2026 · 4 min read

Finder is the one app on your Mac that doesn't have a Quit option. Right-click the Dock icon — no Quit. Hit ⌘Q — nothing happens. Apple deliberately omits it, treating Finder as part of the operating system rather than a normal app. But with one defaults command, you can add the Quit menu item back and quit Finder like any other app.

Why would you want to quit Finder?

There are a few legitimate reasons:

Enable the Quit Finder menu item

Open Terminal (you can find it in Applications › Utilities, or search with Spotlight using ⌘Space) and run:

# Add "Quit Finder" to the Finder menu
defaults write com.apple.finder QuitMenuItem -bool true

# Restart Finder to apply
killall Finder

After Finder relaunches, you'll see Quit Finder at the bottom of the Finder application menu (the one that says "Finder" in the menu bar). You can also press ⌘Q while Finder is the active app, just like any other application.

How to quit and relaunch Finder

Once the menu item is enabled, quitting Finder is straightforward:

  1. Click the desktop or a Finder window to make Finder the active app.
  2. Press ⌘Q, or go to Finder › Quit Finder in the menu bar.
  3. Finder closes. The Dock icon stays, but the windows disappear.

To relaunch Finder, you have several options:

A note on auto-relaunch

macOS is designed to keep Finder running. Several actions will automatically relaunch Finder even after you've quit it:

This is expected behavior. Quitting Finder gives you the option to have it stopped — it doesn't permanently prevent macOS from relaunching it when something needs it.

Do it in one click

Mainspring's Quit Finder menu item toggle adds or removes the Quit option with a single click. No Terminal, no relaunch needed — just flip the switch and it's done.

Try Mainspring free →

Signed & notarized by Apple · 1-day free trial · $29 once

How to undo it

If you want to go back to the default behavior (no Quit option in Finder), run:

defaults write com.apple.finder QuitMenuItem -bool false
killall Finder

The Quit Finder item disappears from the menu after Finder relaunches, and ⌘Q stops doing anything while Finder is active.

Compatibility

This works on macOS Ventura (13), Sonoma (14), and Sequoia (15). The QuitMenuItem key has been part of macOS for a long time — it's a well-documented and stable setting, not an undocumented hack.