dropbox

Dropbox Sync Icons Missing

Resolution Checklist

  • 1 Understand why Dropbox sync status icons disappear
  • 2 Resolve Windows File Explorer overlay limit issues
  • 3 Fix macOS Finder sync icon overlay crashes
  • 4 Configure and force reload the system shells
  • 5 Summary Quick Reference Checklist

Dropbox Sync Icons Missing

Sync icons (such as the green checkmarks for downloaded files, blue sync loops for files in progress, and gray clouds for online-only files) are critical for tracking file status. When these icons disappear, it is difficult to know if files are fully synced. This issue occurs due to operating system shell limits or integration plugin crashes.

This guide provides steps and commands to resolve missing sync icons in Windows File Explorer and macOS Finder.


1. Primary Causes of Missing Sync Icons

Sync icons disappear due to operating system shell constraints:

  • Windows Shell Overlay Limit (15-Slot Limit): Windows only supports a maximum of 15 system-wide icon overlays. Other cloud services (like OneDrive, iCloud, and Google Drive) or developer tools (like Git or TortoiseSVN) register their own overlays. Because Windows processes these alphabetically, Dropbox overlays are ignored if they fall past slot 15.
  • Disabled Finder Extension (macOS): macOS relies on the Dropbox Finder Extension to render icons in Finder windows. If this extension crashes or is disabled, icons will fail to display.
  • Corrupted Shell Icon Cache: A corrupted OS icon cache can prevent new overlays from loading.

2. Resolve Windows File Explorer Overlay Limits

On Windows, you must check the Registry to see which overlay keys are occupying the 15 available slots. You can rename the Dropbox keys (prefixing them with spaces) to prioritize them alphabetically.

A. List Installed Registry Overlays via PowerShell

  1. Search for PowerShell in the Start Menu, right-click, and select Run as Administrator.
  2. Run this command to inspect the registered overlays:
    # List all registered icon overlays in alphabetical order
    Get-ChildItem -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers" | 
    Select-Object Name

Note: The keys at the top of the alphabetical list get prioritized. If OneDrive or other services occupy the top slots (often using spaces or special characters in their names), Dropbox overlays will not render.

B. Apply the Registry Fix to Prioritize Dropbox

To prioritize Dropbox, rename the Dropbox registry entries so they start with spaces (e.g., " DropboxExt1").

  1. Press Win + R, type regedit, and press Enter.
  2. Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers
  3. Right-click the Dropbox keys (usually named DropboxExt1, DropboxExt2, etc.) and select Rename.
  4. Add 3 spaces to the beginning of each Dropbox key name.
  5. Restart your computer or restart Explorer:
    :: Relaunch Explorer to reload Registry overlay keys
    taskkill /f /im explorer.exe
    start explorer.exe

3. Fix macOS Finder Sync Icon Overlays

On macOS, sync icons are driven by the garcon Finder extension plugin. If it stops responding, you can re-register the plugin and relaunch Finder.

A. Re-register and Restart the Finder Extension

  1. Open Terminal (via Cmd + Space, type Terminal).
  2. Run this command block to force the Finder extension to reload:
    # Kill Finder to clear cached visual layers
    killall Finder
    
    # Re-enable the Dropbox Finder plug-in extension
    pluginkit -e use -i com.getdropbox.dropbox.garcon
    
    # Force macOS Finder to restart and load the extension
    open /System/Library/CoreServices/Finder.app

B. Verify Finder Extension Permissions

  1. Go to System Settings > Privacy & Security > Extensions.
  2. Select Finder extensions.
  3. Verify that Dropbox is toggled ON.

4. Rebuild the System Icon Cache

If icons still fail to display, rebuilding the operating systemโ€™s local icon cache will clear out corrupted image databases.

Rebuild Windows Icon Cache

Run this command in an Administrator Command Prompt:

:: Kill Explorer shell
taskkill /f /im explorer.exe

:: Navigate to cache location and delete the db files
cd /d %userprofile%\AppData\Local\Microsoft\Windows\Explorer
attrib -h iconcache_*.db
del iconcache_*.db /f /q

:: Restart Explorer shell
start explorer.exe

5. Summary Quick Reference Checklist

Action TargetOperating SystemTerminal Command / Registry PathExpected Outcome
Inspect OverlaysWindowsHKLM\...\Explorer\ShellIconOverlayIdentifiersChecks if Dropbox falls outside the 15-slot limit.
Prioritize DropboxWindowsRename Dropbox keys by adding spaces to their prefixesForces Windows to process Dropbox overlays first.
Relaunch ExplorerWindowstaskkill /f /im explorer.exeReloads Explorer to apply registry changes.
Enable Finder PluginmacOSpluginkit -e use -i com.getdropbox.dropbox.garconForces macOS Finder to load Dropbox icon overlays.
Relaunch FindermacOSkillall FinderRe-initializes Finder window integrations.
Rebuild CacheWindowsDelete iconcache_*.db in AppDataRecreates corrupted Windows thumbnail and icon indexes.