Skip to content

Instantly share code, notes, and snippets.

@ScribbleGhost
Created April 4, 2019 23:56
Show Gist options
  • Save ScribbleGhost/8fb4609de832fbbcc808a395eebebc84 to your computer and use it in GitHub Desktop.
Save ScribbleGhost/8fb4609de832fbbcc808a395eebebc84 to your computer and use it in GitHub Desktop.
Hide all pinned apps and all apps added to Start in Windows 10 1809
<?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" />
</StartLayoutCollection>
</DefaultLayoutOverride>
<CustomTaskbarLayoutCollection PinListPlacement="Replace">
<defaultlayout:TaskbarLayout>
<taskbar:TaskbarPinList>
<taskbar:DesktopApp DesktopApplicationLinkPath="#leaveempty"/>
</taskbar:TaskbarPinList>
</defaultlayout:TaskbarLayout>
</CustomTaskbarLayoutCollection>
</LayoutModificationTemplate>
@ScribbleGhost
Copy link
Author

ScribbleGhost commented Apr 4, 2019

This is what it will look like in Windows 1809. It also works for Windows 1903.

Call the file LayoutModification.xml and place it in: C:\Users\Default\AppData\Local\Microsoft\Windows\Shell

@ScribbleGhost
Copy link
Author

A screenshot from Windows 1903. Note that here we have removed some apps.

W10-PRO-1903-CMN-MINB-1-2019-05-31-22-28-11

@ScribbleGhost
Copy link
Author

ScribbleGhost commented Aug 17, 2021

LayoutModification.xml for Windows 10 21H1

<LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
  <LayoutOptions StartTileGroupCellWidth="6" />
  <DefaultLayoutOverride>
    <StartLayoutCollection>
      <defaultlayout:StartLayout GroupCellWidth="6" />
    </StartLayoutCollection>
  </DefaultLayoutOverride>
</LayoutModificationTemplate>

Note that in this version of Windows the LayoutModification does not affect the taskbar as it did previously.

32156544

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment