Sync Icons Explained
Resolution Checklist
- 1 Understand Sync Icon Meanings
- 2 Fix Missing Sync Icons on Windows (Registry Overlay Limits)
- 3 Fix Sync Extensions on macOS Finder
- 4 Resolve Stalled Sync Overlay Indicators
- 5 Summary Quick Reference Checklist
Sync Icons Explained
Sync icons are icon overlays added to files and folders in Windows Explorer and macOS Finder. They provide real-time status of your cloud storage sync states (e.g., whether a file is online-only, pinned locally, syncing, or blocked by a permissions error). If these overlays disappear, you lose visibility into whether your data is backed up.
This guide explains what each standard sync icon means and details how to fix broken or missing sync overlays on both Windows and macOS.
1. Understand Sync Icon Meanings
Most major cloud storage providers (OneDrive, Google Drive, Dropbox, iCloud) use standard symbols:
- Blue Cloud Outline: Online-only. The file exists on the cloud server but takes up 0 bytes on your computer. Double-clicking it downloads the file on-demand.
- Green Circle with Checkmark (White Center): Locally Cached. You have opened the file and it has downloaded to your hard drive. If you need local disk space, you can right-click it and select “Free up space” to revert it to a cloud placeholder.
- Solid Green Circle with White Checkmark: Always Keep on Device (Pinned). You have selected “Always keep on this device”. The file is downloaded permanently and remains offline-ready.
- Two Circular Arrows (Blue/Green): Syncing. The file is currently uploading or downloading.
- Red Circle with White ‘X’: Sync Error. The file cannot sync due to a naming conflict, file lock, size limit, or permissions issue.
- Gray Cloud with Slash / Slash Over Logo: Disconnected/Paused. The client application is paused, logged out, or has no internet connection.
2. Fix Missing Sync Icons on Windows (Registry Overlay Limits)
Windows has a hard limit of 15 Shell Icon Overlay slots in the Registry. Windows reserves some for system overlays, leaving about 11. If you install multiple cloud apps (OneDrive, Dropbox, Google Drive, Box), they compete for these slots. The apps that start with spaces in their Registry names get priority, pushing others out.
Reset Shell Icon Overlay Registry Priority
- Press
Win + R, typeregedit, and press Enter to open the Registry Editor. - Navigate to the following path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers - You will see a list of subkeys. The folders at the top of the list get priority. Cloud clients prefix their names with spaces (e.g.,
OneDrive1,DropboxExt1) to force themselves to the top. - If your preferred client’s icons are missing (e.g. OneDrive), rename other unused entries (like old tortoisesvn or box keys) by prefixing them with a
z_so they sort to the bottom. - Exit Registry Editor.
- Open Task Manager (
Ctrl + Shift + Esc), scroll to the bottom, select Windows Explorer, and click Restart.
3. Fix Sync Extensions on macOS Finder
On macOS, sync icons are driven by Finder Extensions under the Apple FileProvider framework. If they go missing, you must enable them in System Settings or restart the Finder API.
A. Enable Finder Extensions in macOS System Settings
- Open System Settings > Privacy & Security > Extensions.
- Click on Finder or Added Extensions.
- Locate your cloud client (e.g., “Dropbox Finder Integration” or “Google Drive”) and ensure the checkbox is checked ON.
B. Force Kill and Reload macOS Finder
Restart Finder to reload the active plist properties and extension injections:
- Open Terminal (via Spotlight).
- Run:
# Restart Finder to reload icon overlays killall Finder
4. Resolve Stalled Sync Overlay Indicators
If a folder’s icon is stuck displaying the “Syncing” arrows indefinitely, but no files inside are uploading:
A. Flush File System Notification Buffer (Windows Command Prompt)
Run as administrator to clear file indexers:
:: Reset folder indexer components
ie4uinit.exe -show
taskkill /f /im explorer.exe
start explorer.exe
B. Reset the Cloud Client Cache to Trigger Overlay Update
If the overlay engine has lost sync with the database:
- OneDrive: Run
%localappdata%\Microsoft\OneDrive\onedrive.exe /reset - Google Drive: Toggle the application offline in Settings, wait 10 seconds, and toggle it back online.
5. Summary Quick Reference Checklist
| Action Target | Operating System | Terminal Command / Path | Expected Outcome |
|---|---|---|---|
| Check Registry Keys | Windows | regedit > ShellIconOverlayIdentifiers | Verifies priority slots for icon overlays. |
| Restart Explorer | Windows | Task Manager > Windows Explorer > Restart | Applies Registry overlay sorting changes. |
| Enable Extension | macOS | System Settings > Privacy & Security > Extensions | Grants permission to overlay Finder icons. |
| Relaunch Finder | macOS | killall Finder | Reloads macOS Finder and displays active overlays. |
| Clear Stuck Icons | Windows | ie4uinit.exe -show | Clears system icon cache database. |
| Reset Sync Client | Windows/macOS | Client Preferences | Syncs client database metrics to reset stuck overlays. |