Malfunctioning Onedrive Icon in Windows 10 Explorer Navigation Panel

OS: Windows 10 LTSC 2021
Version: 10.0.19044

Problem

The personal Onedrive icon inside navigation panel is not work. The property page shows blank.

By using Win+R to run shell:::{018D5C66-4533-4307-9B53-224DE2ED1FE6}, you should see the OneDrive folder opened but it’s not.

However, the business account will work completely fine and also other file sync application such as iCloud and nextCloud.

This happens to all latest OneDrive version (32/64 bit) installed per users or for all users under Windows 10 LTSC 2021.

BTW, the default version bundled with Windows 10 is 32 bit regardless of the Windows version.
onedrive_property

Reason

tl;dr, Microsoft sucks.

When you setup the personal OneDrive account, the client should register the icon in navigation panel pointing to a CLSID (Basically the GUID of the folder registered as Known Folders) {A52BBA46-E9E1-435f-B3D9-28DAA648C0F6}.

This is the CLSID of the OneDrive folder which should be registered meanwhile, and it contains the path to the OneDrive folder.

BUT the client did not do so in LTSC

Therefore, when you start the explorer, the icon itself was displayed, but it points to a ID which doesn’t exist.

Solution:

Copy the following content into a text file, save it as ANYNAME.reg, double click on it and let the regedit import it. Restart the file explorer and all set!

This only applies if your OneDrive folder is at the default location. e.g. C:\User\username\OneDrive.

If it’s not but still under your user folder e.g. C:\User\username\ExampleFolder, you need to change the value of RelativePath to ExampleFolder.

If it’s not under your user folder, e.g. E:\OneDrive, you need to remove the line "ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}", and change the value of RelativePath to the absolute path such as "RelativePath"="E:\OneDrive".

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{5E6C858F-0E22-4760-9AFE-EA3317B67173}]
"Category"=dword:00000002
"Name"="Profile"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A52BBA46-E9E1-435f-B3D9-28DAA648C0F6}]
"Attributes"=dword:00000001
"Category"=dword:00000004
"DefinitionFlags"=dword:00000040
"Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,  00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,  6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,  00,31,00,30,00,34,00,30,00,00,00
"LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,  6f,00,6f,00,74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,  00,5c,00,53,00,65,00,74,00,74,00,69,00,6e,00,67,00,53,00,79,00,6e,00,63,00,  43,00,6f,00,72,00,65,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,31,00,30,00,32,  00,34,00,00,00
"LocalRedirectOnly"=dword:00000001
"Name"="OneDrive"
"ParentFolder"="{5E6C858F-0E22-4760-9AFE-EA3317B67173}"
"ParsingName"="shell:::{018D5C66-4533-4307-9B53-224DE2ED1FE6}"
"RelativePath"="OneDrive"

Source, credits to u/wanderingnoises for finding this.

Edit
Pub: 04 Sep 2023 08:37 UTC
Edit: 04 Sep 2023 08:46 UTC
Views: 2871