Asked by:
UEV - Pinned Task Bar Icons

Question
-
Hello,
Is it possible to use UEV to sync pinned taskbar items and not the start menu?
The issue is we have several different images across the network and they don't the same software so Roaming the start menu would hide programs in some cases
Also when I did manage to roam the taskbar it had blank white icons
Robbie
Thursday, July 5, 2018 8:32 PM
All replies
-
Hi,
I don't know how to help you, but with me the quick launch folder on win 10 isn't even syncing...
how did you sync the quick launch?
Monday, September 24, 2018 9:59 AM -
Found a way to sync the quick launch icons:
Sync both the folder and the regkeys...
<Processes>
<ShellProcess/>
</Processes>
<Settings>
<PreventOverlappingSynchronization>false</PreventOverlappingSynchronization>
<Registry>
<Path Recursive="false" DeleteIfNotFound="false">Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband</Path>
<Name>Favorites</Name>
</Registry>
<File>
<Root>
<EnvironmentVariable>APPDATA</EnvironmentVariable>
</Root>
<Path Recursive="true">Microsoft\Internet Explorer\Quick Launch</Path>
</File>
</Settings>- Edited by Matthias Vandenberghe Thursday, November 8, 2018 8:45 AM
Thursday, November 8, 2018 8:43 AM -
Hello,
where did you inser this snippet?
Thanks
Monday, November 26, 2018 7:06 AM -
I created a new template. Full content:
<SettingsLocationTemplate xmlns="http://schemas.microsoft.com/UserExperienceVirtualization/2013A/SettingsLocationTemplate">
<Name>ShortCut Folders</Name>
<ID>ShortCutFolders</ID>
<Description>Synchronizes the Pinned taskbar icons and favorites at logoff time of the user.</Description>
<Version>3</Version>
<Author>
<Name>My Name</Name>
</Author>
<Processes>
<ShellProcess/>
</Processes>
<Settings>
<PreventOverlappingSynchronization>false</PreventOverlappingSynchronization>
<Registry>
<Path Recursive="false" DeleteIfNotFound="false">Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband</Path>
<Name>Favorites</Name>
</Registry>
<File>
<Root>
<EnvironmentVariable>APPDATA</EnvironmentVariable>
</Root>
<Path Recursive="true">Microsoft\Internet Explorer\Quick Launch</Path>
</File>
<File>
<Root>
<EnvironmentVariable>USERPROFILE</EnvironmentVariable>
</Root>
<Path Recursive="true">Favorites</Path>
</File>
<File>
<Root>
<EnvironmentVariable>USERPROFILE</EnvironmentVariable>
</Root>
<Path Recursive="true">Desktop</Path>
</File>
</Settings>
</SettingsLocationTemplate>Monday, December 10, 2018 7:37 AM