iCloud Drive Not Appearing
Resolution Checklist
- 1 Understand why iCloud Drive is not appearing
- 2 macOS: Restore iCloud Drive to Finder and fix FileProvider
- 3 Windows: Fix registry and shell extensions for iCloud Drive
- 4 Reset iCloud system application mount paths
- 5 Summary Checklist for iCloud Drive Not Appearing
iCloud Drive Not Appearing
When iCloud Drive is successfully syncing in the background but the folder or shortcut is completely missing from Finder (macOS) or File Explorer (Windows), the client has failed to mount the virtual namespace in the operating system shell.
This guide provides technical steps to re-register the system file providers, fix registry keys, and force the desktop environments to display your iCloud Drive directory.
1. Understand why iCloud Drive is not appearing
The disappearance of the iCloud Drive directory from your file browser is usually caused by:
- Disabled FileProvider Plug-in (macOS): System updates can occasionally de-register Apple’s internal CloudDocs plugin from Finder’s extension manager.
- Corrupted Shell Extension Registrations (Windows): The DLLs responsible for projecting the virtual iCloud Drive namespace into File Explorer fail to register during client updates.
- Finder or Explorer Sidebar Cache Corruptions: Cached settings files prevent the sidebar from updating and showing cloud drive links.
2. macOS: Restore iCloud Drive to Finder and fix FileProvider
On macOS, you can force-register the file provider system plugin and reset Finder preferences.
Step 1: Force Enable the CloudDocs FileProvider Extension
- Open Terminal.
- Run the
pluginkitutility to verify and force-enable the iCloud FileProvider service:pluginkit -e use -i com.apple.CloudDocs.MobileDocumentsFileProvider
Step 2: Delete Corrupt Finder Sidebar Plist Caches
If Finder fails to display the iCloud option in the sidebar:
- Delete Finder preferences:
rm -f ~/Library/Preferences/com.apple.sidebarlists.plist rm -f ~/Library/Preferences/com.apple.finder.plist - Restart the Finder process:
killall Finder
Step 3: Re-mount the FileProvider Domain
If the folder is still missing, remove and re-add the active iCloud sync domain:
- Run this command to remove the domain safely (this won’t delete cloud data):
fileproviderctl domain remove -a - Turn the iCloud Drive toggle Off and then On in System Settings → Apple ID → iCloud to trigger automatic re-creation.
3. Windows: Fix registry and shell extensions for iCloud Drive
On Windows, the iCloud Drive virtual folder requires specific registry keys to appear in File Explorer.
Step 1: Re-register the iCloud Shell DLL
If the virtual folder doesn’t appear under “This PC” or in the Sidebar:
- Open Command Prompt (Admin).
- Re-register the 64-bit shell extension DLL (adjust path if using standalone iTunes/iCloud installer):
(If using the Microsoft Store version, locate the DLL in WindowsApps and run the equivalent command).regsvr32 /i "C:\Program Files\Common Files\Apple\Internet Services\iCloudShellExt64.dll"
Step 2: Fix Windows Registry Namespace Pins
Ensure Windows allows the iCloud namespace to pin to the sidebar:
- Run this command to add the pinning registry key:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{F0626A24-41AD-4A7E-B8E6-7785F24D2866}" /ve /t REG_SZ /d "iCloud Drive" /f
Step 3: Force Restart Windows Explorer
- Restart the Windows Explorer process:
taskkill /f /im explorer.exe && start explorer.exe
4. Reset iCloud system application mount paths
If the folder remains invisible:
- Log Out and Log In: Logging out of your Apple ID resets the virtual filesystem mapping across all layers.
- Verify iCloud Drive checkbox: Ensure the “iCloud Drive” toggle is checked in the client settings. If the client is installed but the drive is disabled within the application dashboard, it will not mount to the operating system paths.
5. Summary Checklist for iCloud Drive Not Appearing
| Platform | Action Command / Task | Expected Outcome |
|---|---|---|
| macOS | pluginkit -e use -i com.apple.CloudDocs.MobileDocumentsFileProvider | Forces the OS to load the iCloud sync extension. |
| macOS | rm -f ~/Library/Preferences/com.apple.finder.plist | Resets Finder sidebar configurations. |
| macOS | killall Finder | Forces Finder to reload preferences and show iCloud. |
| Windows | regsvr32 iCloudShellExt64.dll | Re-links the File Explorer visual DLL. |
| Windows | reg add ...\NameSpace\{GUID} | Inject registry key to place iCloud in Explorer sidebar. |
| Windows | taskkill /f /im explorer.exe && start explorer.exe | Restarts the Explorer UI shell to load registry changes. |