Windows 11 is very similar to Windows 10 is terms of technology and core services, however with the new UI and Start Menu refresh there are some new elements that you may want to remove.
Start Menu Layout
Microsoft now expects the Start menu layout to be managed by an MDM service, if you want to do it without that then the easiest method is to copy the start.bin files.
- Use a existing Windows 11 install to setup the Start menu layout how you want it.
- Copy the start.bin file from
%LocalAppData%\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState
to a folder in the MDT Deployment Share - in my case, I’ll use “_custom”. - Within your deployment Task Sequence you’ll want to copy the start.bin file to
C:\Users\Default\AppData\Local\Packages\Microsoft.Windows.StartMenuExperienceHost_cw5n1h2txyewy\LocalState
- For all new users they will now get the start menu layout you specified.
I use a PowerShell script to copy the start.bin to the correct location.
|
|
Disable Search On The Taskbar
Currently I have not found the Group Policy settings for the new additions to the Taskbar, so here are the registry entries to disable/hide the extra icons.
The registry entry for the setting is per-user and is located here:
|
|
The key is a DWORD (32-bit) Value name SearchboxTaskbarMode
and it has 2 states:
- 0 (Hide icon)
- 1 (Show icon)
Disable Widgets On The Taskbar
The registry entry for the setting is per-user and is located here:
|
|
The key is a DWORD (32-bit) Value name TaskbarDa
and it has 2 states:
- 0 (Hide icon)
- 1 (Show icon)
Disable Chat In The Taskbar
The registry entry for the setting is per-user and is located here:
|
|
The key is a DWORD (32-bit) Value name TaskbarMn
and it has 2 states:
- 0 (Hide icon)
- 1 (Show icon)
Default App Associations
Importing a list of default app associations for Windows 11 is the same as Windows 10, but I think it’s worth mentioning that Windows 11 has done away with the “Default Apps” section of Settings and so now it can be a lot more work to set them all on a template system to export. You can however still import a default app associations file that was created on Windows 10 into Windows 11.
Exporting A Default App Association File
|
|
Importing A Default App Association File as part of an MDT Task Sequence
You will need to create a new “Run Command Line” item just under “Postinstall” - see the image below.
|
|
Support My Work
If you would like to support me, please check out the link below.
If you have any questions or comments, please leave them below.
-Mike