Feb 13 2020 01:42 PM
I'm attempting to deploy the new edge browser, version 80.0.361.50 (Official build) (64-bit), in an enterprise situation, and Edge pins itself to the taskbar even though I have an .xml file that specifically designates that only two icons - IE11 and File Explorer should show on the taskbar. Previous to installing Edge Chromium I had no problems controlling the taskbar with my .xml file and the GPO that specifies where to find the file. Now I have IE11, File Explorer and Edge on the taskbar. Here's the code for my Start Menu and Taskbar and Edge is not specified anywhere in it, yet it remains pinned on the taskbar.
<?xml version="1.0" encoding="utf-8"?>
<LayoutModificationTemplate
xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"
xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
Version="1">
<LayoutOptions StartTileGroupCellWidth="6" />
<DefaultLayoutOverride>
<StartLayoutCollection>
<defaultlayout:StartLayout GroupCellWidth="6">
</defaultlayout:StartLayout>
</StartLayoutCollection>
</DefaultLayoutOverride>
<CustomTaskbarLayoutCollection PinListPlacement="Replace">
<defaultlayout:TaskbarLayout>
<taskbar:TaskbarPinList>
<taskbar:DesktopApp DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\Accessories\Internet Explorer.lnk"/>
<taskbar:DesktopApp DesktopApplicationLinkPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\System Tools\File Explorer.lnk" />
</taskbar:TaskbarPinList>
</defaultlayout:TaskbarLayout>
</CustomTaskbarLayoutCollection>
</LayoutModificationTemplate>
Apr 03 2020 02:28 AM
May 12 2020 06:06 AM
@SN1973 navigate to %AppData%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar and delete unwanted icons
May 12 2020 06:58 AM
@leonchyk This is in an organization. So I would have to do that for all 300 PCs? Thanks for the idea though, gives me something to consider or at least a helpful start.
May 12 2020 07:50 AM
@SN1973 use an sccm script to remove the icon on all pc's!
May 12 2020 08:11 AM
@leonchyk We don't use SCCM unfortunately.
May 12 2020 08:21 AM
@SN1973 logon scripts then, come on!
May 12 2020 08:26 AM
Ok, thanks for the suggestions, hopefully MS fixes the actual problem, if not I'll give that a shot.
May 13 2020 12:19 AM
@leonchyk Thanks for your answer. That's how we do it at the moment. But it's pretty annoying to make this extra step, if you already created a special taskbar layout. Let's hope for a fix...
Sep 08 2020 09:38 AM
@Vico29 I hope so too. Dealing with the same problem here. Did you managed to found another solution?
If not, Microsoft, make it right please.