-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pinned items to the Windows 11 taskbar and remove the Windows Store
- Loading branch information
1 parent
1f76e24
commit adbb78f
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?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"> | ||
<CustomTaskbarLayoutCollection PinListPlacement="Replace"> | ||
<defaultlayout:TaskbarLayout> | ||
<taskbar:TaskbarPinList> | ||
<taskbar:DesktopApp DesktopApplicationLinkPath="%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Contoso App.lnk" /> | ||
<taskbar:UWA AppUserModelID="Microsoft.WindowsCalculator_8wekyb3d8bbwe!App" /> | ||
<taskbar:UWA AppUserModelID="Microsoft.WindowsTerminal_8wekyb3d8bbwe!App" /> | ||
</taskbar:TaskbarPinList> | ||
</defaultlayout:TaskbarLayout> | ||
</CustomTaskbarLayoutCollection> | ||
</LayoutModificationTemplate> |