Good evening community,
Someone has been able to add taskbar icons in Windows 11 24H2 from a response file.
It doesn't work for me and I throw out all kinds of possible solutions. I have done the following:
Add this command in the Specialize
1.- cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v LayoutXMLPath /d "C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\DefaultLayouts.xml" /f y cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v LayoutXMLPath /d "C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\LayoutModification.xml" /f
And it works but it's to replace when I have this kind of setup in the XML file.
When installing the ISO, I save with the name LayoutModification.xml, and at the time of startup the terminal icon appears, but obviously it replaces it with the Microsoft Edge.
Following the same sequence, remove this PinListPlacement="Replace". So that I would add, the terminal and keep the others, but still it didn't work and left me by default explorer and the edge. I also changed the name to DefaultLayouts.xml but still nothing.
Has anyone else worked for you?
I would appreciate your help please
Someone has been able to add taskbar icons in Windows 11 24H2 from a response file.
It doesn't work for me and I throw out all kinds of possible solutions. I have done the following:
Add this command in the Specialize
1.- cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v LayoutXMLPath /d "C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\DefaultLayouts.xml" /f y cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v LayoutXMLPath /d "C:\Users\Default\AppData\Local\Microsoft\Windows\Shell\LayoutModification.xml" /f
And it works but it's to replace when I have this kind of setup in the XML file.
Code:
<?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:UWA AppUserModelID="Microsoft.WindowsTerminal_8wekyb3d8bbwe!App"/> <!-- Windows terminal -->
<taskbar:DesktopApp DesktopApplicationID="Microsoft.Windows.Explorer"/> <!-- Explorer Windows -->
</taskbar:TaskbarPinList>
</defaultlayout:TaskbarLayout>
</CustomTaskbarLayoutCollection>
</LayoutModificationTemplate>
When installing the ISO, I save with the name LayoutModification.xml, and at the time of startup the terminal icon appears, but obviously it replaces it with the Microsoft Edge.
Following the same sequence, remove this PinListPlacement="Replace". So that I would add, the terminal and keep the others, but still it didn't work and left me by default explorer and the edge. I also changed the name to DefaultLayouts.xml but still nothing.
Has anyone else worked for you?
I would appreciate your help please