| Issue | Common Cause | Estimated Fix Time | Difficulty |
|---|---|---|---|
| Significant % drop while lid is closed | Background indexing or “Wake for network access” | 10-15 Minutes | Easy |
| Constant system wakeups | Find My Mac or Power Nap services | 5 Minutes | Easy |
| High CPU usage during sleep | Corrupted Spotlight index or mds_stores | 20 Minutes | Intermediate |

What is macOS Sequoia Battery Drain Overnight?
macOS Sequoia battery drain overnight refers to a phenomenon where a MacBook loses a significant percentage of its battery charge while in sleep mode. Users often report closing their laptops at 90% and waking up to find them at 20% or completely dead.
This issue is common immediately after updating to macOS Sequoia. The operating system performs several intensive background tasks such as Spotlight indexing, Photos library analysis, and database migration. These processes can prevent the CPU from entering a “Deep Sleep” state.
Additionally, new features in macOS Sequoia might have default settings that trigger network requests during sleep. These “Dark Wakes” allow the Mac to update data briefly without turning on the screen, but if they occur too frequently, they deplete the battery rapidly.
Step-by-Step Solutions to Fix Battery Drain
1. Check Activity Monitor for Energy Hogs
Before changing settings, identify if a specific app is preventing sleep. Open Activity Monitor and navigate to the Energy tab.
Look for the column “Preventing Sleep.” If any application says “Yes,” that is your primary culprit. Close that application before shutting the lid.
2. Disable Wake for Network Access
This is the most common cause of overnight drain. Your Mac wakes up to check for emails or iCloud updates. To disable it:
Go to System Settings > Battery > Options. Set “Wake for network access” to Never.
3. Use Terminal to Identify Wake Reasons
If you aren’t sure why the Mac is waking up, you can use a terminal command to see the system assertions that are keeping the disk or processor active.
pmset -g assertions
Check the “UserIsActive” and “PreventUserIdleSystemSleep” sections. If you see a process listed there, it is stopping your Mac from sleeping.
4. Reset the Spotlight Index
After the Sequoia update, Spotlight often gets stuck. Re-indexing can solve the “mds_stores” process from draining power.
Go to System Settings > Siri & Spotlight. Click Spotlight Privacy. Drag your Macintosh HD into the list, wait a minute, and then remove it. This forces macOS to start a fresh, clean index.
5. Optimize Find My Settings
The “Find My” network is helpful but can be chatty. If your battery is critical, you may want to toggle this off temporarily to see if the drain stops.
Navigate to System Settings > [Your Name] > iCloud > Find My and turn off “Find My Mac.”
6. Deep Hibernate via Terminal
For users who want to ensure zero battery loss, you can change the standby delay using the following command, which forces the Mac into a deeper hibernation state sooner:
sudo pmset -a standbydelayhigh 3600 standbydelaylow 1800
This tells the Mac to enter deep hibernation after one hour of sleep when the battery is high, or 30 minutes when the battery is low.