Custom SCCM Windows 10/11 Taskbar Configuration

Custom SCCM Windows 10/11 Taskbar Configuration

windows 10 Taskbar configuration

With the discharge of Home windows 10 1607, some customization options have been modified. One in all them is the flexibility to switch the Taskbar configuration. In a earlier submit, we offered many customization scripts and how-to that have been made for Home windows 10 model 1511. Modifying the Taskbar was a type of customization however it was extra of a workaround than a deliberate how-to. With Home windows 10 1607, the Taskbar may be modified equally to the Begin Menu. As well as, help for making use of a custom-made taskbar utilizing MDM (like Microsoft Intune) was added in Home windows 10, model 1703.

On this submit, we are going to element the right way to modify the Home windows 10 Taskbar configuration utilizing a SCCM Process sequence. Customise Home windows 10 Taskbar Configuration is also performed as a part of a Group Coverage.

You probably have an XML file that’s used on Home windows 10 gadgets, it’s also possible to apply it to Home windows 11 gadgets. You will have to replace the App IDs.

SCCM Home windows 10 Taskbar Configuration Conditions

Utilizing this SCCM Taskbar customization answer is barely accessible for Home windows 10 model 1607 and better. As said within the introduction it additionally applies to Home windows 11.

Earlier than we start

It’s essential to grasp the idea behind customizing the Taskbar. It makes use of the identical Format Modification technique because the Begin Menu. It signifies that for those who already use an XML to switch the format of the Begin Menu, you have to to make use of the similar file with a brand new part within the XML. You possibly can’t have an XML for the Begin Menu and a separate one for the Taskbar. Should you do, the final to be imported would be the solely configuration utilized to each the Begin menu and Taskbar.

Configure a StartMenu.xml format

  • Setup a Home windows 10 begin menu as we wish to have because the default

If you don’t want to modify the Begin Menu and depart it by default, you may skip this part and go on to the Taskbar configuration part.

  • Begin a PowerShell command window as administrator
  • Enter the next command line to export the Begin Menu
    • Export-startlayout -path C:tempStartMenu.xml
  • A StartMenu.xml is generated within the specified listing

SCCM Windows 10 Taskbar configuration

Extra particulars may be discovered on this Technet article

Add Home windows 10 Taskbar configuration to StartMenu.xml

The straightforward half was to generate the StartMenu.xml file, the although half is forward. There isn’t any configure-and-export answer for the Taskbar. As an alternative, we should manually edit the sections within the XML file to incorporate the specified configuration for the Taskbar.

  • Exchange the highest part of LayoutModificationTemplate. This can “Allow” the Begin Menu and Taskbar.

<LayoutModificationTemplate Model=”1″ xmlns=”

<?xml model=”1.0″ encoding=”utf-8″?>
<LayoutModificationTemplate
xmlns=”http://schemas.microsoft.com/Begin/2014/LayoutModification”
xmlns:defaultlayout=”http://schemas.microsoft.com/Begin/2014/FullDefaultLayout”
xmlns:begin=”http://schemas.microsoft.com/Begin/2014/StartLayout”
xmlns:taskbar=”http://schemas.microsoft.com/Begin/2014/TaskbarLayout”
Model=”1″>

  • Add a brand new part after the </DefaultLayoutOverride> part. That is the place you’ll be including your shortcuts. We will likely be including Web Explorer, Explorer, Outlook and Skype.

<CustomTaskbarLayoutCollection PinListPlacement=”Exchange”>
<defaultlayout:TaskbarLayout>
<taskbar:TaskbarPinList>
<taskbar:DesktopApp DesktopApplicationLinkPath=”%APPDATApercentMicrosoftWindowsStart MenuProgramsAccessoriesWeb Explorer.lnk“/>
<taskbar:DesktopApp DesktopApplicationLinkPath=”%APPDATApercentMicrosoftWindowsStart MenuProgramsSystem InstrumentsFile Explorer.lnk” />
<taskbar:DesktopApp DesktopApplicationLinkPath=”%ALLUSERSPROFILEpercentMicrosoftWindowsStart MenuProgramsOutlook 2016.lnk” />
<taskbar:DesktopApp DesktopApplicationLinkPath=”%ALLUSERSPROFILEpercentMicrosoftWindowsStart MenuProgramsSkype Entreprise 2016.lnk” />
</taskbar:TaskbarPinList>
</defaultlayout:TaskbarLayout>
</CustomTaskbarLayoutCollection>

The tip outcome will appear to be this :

SCCM Windows 11 Taskbar configuration

The order of apps within the XML file dictates the order of pinned apps on the Taskbar from left to proper, to the best of any current apps pinned by the consumer.

The next instance reveals how apps will likely be pinned: Home windows default apps to the left (blue circle), apps pinned by the consumer within the middle (orange triangle), and apps that you simply pin utilizing the XML file to the best (inexperienced sq.).

Extra particulars may be discovered on this Technet article to edit the XML as you would like.

Add the Begin Menu and TaskBar configuration to a Process sequence

We’ll now deploy our configuration utilizing a Process Sequence.

  • Go to Software program Library Working Methods Process Sequences
  • Proper-click and Edit your Home windows 10 process sequence
  • Choose Add / Common / Run Command Line
    • Identify : Set Begin Menu Format
    • Command line : Powershell.exe Import-StartLayout -LayoutPath StartMenuStartMenu.xml -MountPath C:
    • Test the Bundle field and specify your Home windows 10 customization package deal
  • Place this step after the Home windows picture has been deployed

SCCM Home windows 10 Taskbar Configuration Outcomes

After a brand new deployment, the consumer profile will load with a modified Begin Menu and Taskbar.

Default view :

SCCM Windows 10 Taskbar configuration

Modified with the StartMenu.xml :

SCCM Windows 10 Taskbar configuration

The order suits our XML file order. File Explorer is left as a result of it’s a Home windows default app.

Bonus – Conceal Cortana from the Taskbar

If you wish to see much less or no Cortana in any respect within the taskbar, configure the next Regkey with a bunch coverage choice :

  • HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionSearch
  • SearchboxTaskbarMode DWORD
  • 0 = Hidden
SCCM Windows 10 Taskbar configuration
  • 1 = Present search or Cortana icon
SCCM Windows 10 Taskbar configuration
SCCM Windows 10 Taskbar configuration

Right here’s how the Registry configuration seems to be in Group Coverage Desire :

SCCM Windows 11 Taskbar configuration

Hope this assist!

We use cookies to enable site functionality and collect data about user interactions. By clicking Accept, you agree to our use for advertising, analytics, and support.