Introduction / Why This Is Needed
Finder is not just a file manager—it's the central interface for interacting with macOS. When it starts to slow down, freeze, or take a long time to open folders, it hurts productivity. The issues are usually related to:
- Active background Spotlight indexing (especially after a system update or connecting a large drive).
- Bloated cache and "cluttered" settings.
- Visual effects that are heavy to render on older or weaker Mac models.
- Outdated or corrupted configuration files.
This guide will walk you through proven methods for diagnosis and resolution, from the simplest (interface settings) to more advanced (Terminal work). We'll focus on macOS Sonoma/Ventura, but most steps are relevant for older versions as well.
Requirements / Preparation
- Administrator privileges. Some commands (e.g., resetting the Spotlight index) will require an administrator password.
- Backup (recommended). Before deleting cache and resetting settings, it's advisable to have a current backup via Time Machine.
- Terminal. The primary tool for deep optimization. Located in
/Applications/Utilities/. - Time. The full cycle (especially index rebuilding) can take anywhere from 15 minutes to several hours depending on the amount of data on the disk. Allow 20–30 minutes for active steps.
Step-by-Step Instructions
Step 1: Assess Current System Load
Before changing anything, you need to understand what exactly is slowing things down. Launch Activity Monitor (via Spotlight: press Cmd+Space, type "Activity Monitor").
- Go to the CPU tab. Sort by the "% CPU" column.
- Pay attention to these processes:
mds,mdworker,mdworker_hel— these are Spotlight services. If they constantly load the CPU (especially after connecting a new drive or updating the system), they are the prime suspect for slowdowns.Finder— the file manager itself. If it's constantly at the top of the list with a high percentage, the issue might be in its settings or open windows.- Any other process with high CPU usage (e.g.,
kernel_task) can indirectly affect the responsiveness of the entire system, including Finder.
Conclusion: If you see activity from mds/mdworker, move to Step 2. If the high load is from Finder itself, Steps 3 and 4 will help more.
Step 2: Pause Spotlight Indexing (Temporary Solution)
This will give you "breathing room" and immediately reduce CPU load if indexing is the culprit.
- Open Terminal.
- Enter the command:
sudo mdutil -a -i off - The system will request an administrator password. Enter it (characters won't be displayed as you type).
- You'll see messages indicating that indexing has been disabled for all volumes.
What this does: The mds service stops scanning files and updating the search database. Finder and Spotlight search will continue to work, but they'll use the old index, which will become outdated over time.
Important: Don't leave indexing disabled for long. After you confirm that Finder is faster (or after completing other steps), re-enable it with:
sudo mdutil -a -i on
The system will begin scheduled reindexing in the background, but now under lighter load.
Step 3: Clear Cache and Reset Finder Settings
Cache (temporary files) and "forgotten" settings can accumulate over years and slow down interface rendering.
- Close all Finder windows.
- In Terminal, run these commands sequentially:
# Delete Finder cache rm -rf ~/Library/Caches/com.apple.finder* # Reset Finder settings to factory defaults (will remove sidebar, view preferences, etc.) defaults delete com.apple.finder # Force restart Finder to apply changes killall Finder - After the restart, Finder will open "fresh." You'll need to reconfigure the sidebar and possibly folder views (list/icon), but this is quick.
What this does: The first command deletes cache files that might contain broken links or outdated thumbnails. The second returns settings to their original state, removing any potential "heavy" customizations.
Step 4: Reduce or Disable Visual Effects
macOS includes many animations and transparencies rendered in real-time. On older MacBooks or under high GPU load, these can cause a "laggy" feel.
- Open System Settings.
- Go to the Effects section (in older versions: "Display" → "Transparency").
- Turn off:
- Reduce transparency — disables semi-transparent UI elements.
- Increase contrast — simplifies window borders.
- Next, in System Settings, find Accessibility → Display.
- Turn on:
- Reduce transparency (if not already adjusted in the previous step).
- Reduce motion — disables parallax effects and complex scrolling animations.
- Restart Finder (as in Step 3) or simply open/close a window to notice the difference.
Step 5: Manage Items in the Finder Sidebar
Each entry in the sidebar (especially network drives, iCloud Drive, "Recent Items") requires an availability check when opening Finder. The more there are, the slower the panel may render.
- Open any Finder window.
- In the menu bar, select Finder → Settings (or press
Cmd+,). - Go to the Sidebar tab.
- Uncheck items you rarely use:
- Network drives (if you don't regularly access a file server).
- External disks (if they aren't constantly connected).
- iCloud Drive (if you don't sync files via the cloud).
- "Recent Items."
- "Downloads" (if you rarely access it via the sidebar).
- Close the settings window. Changes apply immediately.
Step 6: Rebuild the Spotlight Index (If the Problem Was There)
If after disabling indexing (Step 2) you confirmed the issue was with Spotlight, but now want full search functionality again, rebuild the index carefully.
- Ensure indexing is enabled:
sudo mdutil -a -i on - Force-delete the old index for the system disk (usually
/):
Caution: Do not usesudo mdutil -E /-Eon disks that shouldn't be indexed (e.g., external archives). - The system will start rebuilding the index in the background. You can monitor progress:
The output will showsudo mdutil -s /Indexing: enabledandIndex status: Indexing. When the status changes toIdle, the process is complete. - During rebuilding, the system may slow down slightly, especially when opening new folders or using search. This is normal.
Step 7: Check and Optimize External Drives
If you work heavily with external HDDs or SSDs:
- Don't overfill the disk. It's recommended to keep at least 10–15% free space. When filled beyond ~85%, read/write speeds drop, and Finder may "hang" when opening folders on such a disk.
- Check the disk for errors. Launch Disk Utility (
/Applications/Utilities/). Select the external disk → "First Aid." This fixes logical filesystem errors. - Use the correct format. For compatibility and performance on Mac, use APFS (for SSDs) or Mac OS Extended (Journaled) (for HDDs). The exFAT format may perform slower.
Verifying the Result
After performing key steps (especially 2, 3, 4):
- Open multiple Finder windows simultaneously.
- Switch between them, open different folders (including those on external drives).
- Use the search in Finder (top right) for a common term (e.g., "document").
- Open Activity Monitor again and check CPU usage by
Finder,mds,mdworker. They should be either absent or show minimal values (0–5%) at idle.
Success criterion: Finder windows open instantly, scrolling is smooth, and search works without noticeable pauses.
Potential Issues
- After resetting the index (Step 6), search finds nothing for a long time.
- Solution: This is normal. Rebuilding the index on a large disk (1TB+) can take 6–12 hours. The process runs in the background with low priority. Don't interrupt it; just give the system time. Check status with
sudo mdutil -s /.
- Solution: This is normal. Rebuilding the index on a large disk (1TB+) can take 6–12 hours. The process runs in the background with low priority. Don't interrupt it; just give the system time. Check status with
- Finder crashes or doesn't restart after
killall Finder.- Solution: Restart your Mac. If the problem recurs, the preferences file might be corrupted. Delete it entirely:
rm ~/Library/Preferences/com.apple.finder.plistand repeat Step 3.
- Solution: Restart your Mac. If the problem recurs, the preferences file might be corrupted. Delete it entirely:
- The interface looks "ugly" after disabling visual effects.
- Solution: Settings can be reverted. Disable only "Reduce transparency" and "Reduce motion," leaving window animations enabled.
- Problem persists—Finder is still slow, and
mdsisn't loading the CPU.- Solution: The issue might be:
- Hardware: If your Mac has an HDD (not SSD), upgrading to an SSD yields a massive boost. Also check if the system disk is full.
- Corrupted software: Boot into Safe Mode (hold
Shiftat startup). If Finder is fast in Safe Mode, the problem is a third-party extension (kext) or login item. - Network drives: Remove all network drives from the sidebar and try again.
- Solution: The issue might be:
This article was prepared by FixPedia experts. If this guide helped you, please share it with colleagues. For more complex macOS performance issues, we recommend consulting Apple's official documentation or a specialist.