Fixing OneDrive icon on LTSC install of Windows 10
The personal Onedrive icon inside navigation panel does not work after OneDrive has been installed on a LTSC installation. The property page shows blank.
By using Win+R
to run shell:::{018D5C66-4533-4307-9B53-224DE2ED1FE6}
, we can see the OneDrive folder opened but it does 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.
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 does not do this on LTSC
Therefore, when you open the file explorer, the icon itself is displayed, but points to a CLSID which does not 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"
"ParsingName"="shell:::{018D5C66-4533-4307-9B53-224DE2ED1FE6}"
"RelativePath"="E:\OneDrive"
Thank you to http://blog.ndxk.cc/ for finding and sharing this.