Your Mac won't shut down? Force shutdown then fix the hang
Your Mac hangs on shutdown. The quick fix is a force shutdown, then check for stuck apps or macOS cache issues. I’ll show you both steps.
I get it — you click Shut Down, the screen goes dark except for that spinning wheel or a black screen with no response. Nothing happens for minutes. It’s annoying, especially when you’re in a hurry. Let’s fix it.
The quick fix: force shutdown
Hold down the power button on your Mac (or the Touch ID button on a MacBook) for about 10 seconds. Don’t tap — hold it. The screen will go black, and the machine will power off completely. That’s the force shutdown.
Wait 10 seconds, then press the power button once to turn it back on. Your Mac will boot normally. That’s the first step. It gets you unstuck right now.
Why your Mac hung on shutdown
Most of the time, a hung shutdown happens because a background process or app won’t quit. macOS waits for it to respond, and after a few seconds, it gives up and force-quits it. But sometimes the app or system process gets stuck in a loop. Maybe you had a browser with 50 tabs open, or a game that didn’t close properly, or an app that crashed earlier and left a zombie process.
The real fix is to find that stuck app and stop it from doing this again.
The 30-second rule
If your Mac doesn’t shut down within 30 seconds after you click Shut Down, something’s wrong. Don’t wait longer than that. Use the force shutdown method above. It’s safe — macOS handles disk writes and file system operations cleanly when you force shutdown from a hung state. (Don’t do this when the Mac is writing a file or installing an update, though. That’s different.)
How to stop it from happening again
- Check for stuck apps before you shut down. Open Activity Monitor (in /Applications/Utilities). Look at the CPU tab. If an app shows “Not Responding” in red, select it and click the X button. Force quit it. Then try shutting down.
- Check for a stuck Finder process. Sometimes Finder itself gets stuck. In Activity Monitor, search for “Finder.” If it’s not responding, force quit it. Your desktop icons will disappear for a moment, then come back. Try shutdown again.
- Clear system caches. This isn’t for everyone, but if you regularly see shutdown hangs, clearing caches can help. Open Terminal (in /Applications/Utilities). Type this command and press Enter:
You’ll be prompted for your password. Type it (you won’t see characters as you type — that’s normal). After it runs, restart normally. This clears out temporary files that sometimes cause conflicts during shutdown.sudo rm -rf /Library/Caches/* ~/Library/Caches/*
What to do if it still hangs after force shutdown
Try a different approach: shut down from the Terminal. Open Terminal and type:
sudo shutdown -h now
Enter your password. This bypasses the GUI and forces a shutdown from the command line. If that works, the hang is likely in the graphical interface part of macOS, not a core system process.
Less common variations of the same issue
Some Macs hang on shutdown because of a specific hardware or software quirk. Here’s what I’ve seen over the years:
MacBook won’t shut down — black screen, fan still running
This is common on 2016–2019 MacBook Pros. The T2 chip can get stuck in a power state. Force shutdown (hold power button for 10 seconds). If it keeps happening, try resetting the SMC (System Management Controller). For T2 Macs: shut down, hold the power button for 10 seconds, release, then wait 5 seconds. Then press power to turn it on. For Intel Macs without T2: shut down, hold Shift+Control+Option on the left side of the keyboard, then press the power button, hold all for 10 seconds, release, then start normally.
Mac shuts down but immediately restarts
That’s not a hang — that’s a restart loop. It happens after a macOS update or if a kernel panic occurs. Try booting into Safe Mode: shut down, then start up while holding the Shift key. Release when you see the login window. Once in Safe Mode, try shutting down normally. If that works, restart normally and see if the issue returns.
Shut down button does nothing — no response at all
This is rare but I’ve seen it on older Macs running Mojave or Catalina. Usually means the login window or SystemUIServer has crashed. Hold Command+Option+Escape to open Force Quit Applications. Select “Finder” and click Relaunch. That restarts the desktop environment. Then try shutting down.
Will this fix it for good?
For most people, clearing the stuck app or cache fixes it permanently. But if your Mac hangs on shutdown regularly — like once a week or more — there might be a deeper issue. Check your disk health: open Disk Utility, select your startup disk, click First Aid, and run it. Bad blocks on the drive can cause shutdown hangs. Also check if you have any third-party kernel extensions (kexts) installed. Go to System Settings > General > About > System Report > Software > Extensions. If you see anything from a company you don’t recognize, remove that software.
Prevention tips
- Update macOS. Apple fixes shutdown bugs in every update. If you’re on an older version, update to the latest compatible release.
- Don’t quit apps by force-quitting all the time. That can leave leftover processes. Quit apps normally (Command+Q).
- Restart your Mac once a week. A fresh boot clears out memory leaks and stuck processes before they get worse.
- If you use a VPN or security software, update it. Some of those tools add kernel-level extensions that can block shutdown. Updating them often fixes compatibility issues.
The bottom line: your Mac should shut down in under 15 seconds. If it doesn’t, you know what to do. Force shutdown, find the stuck app, clear caches if needed, and keep your system updated. That’s the whole playbook.
Was this solution helpful?