Hello Jason,
Windows 11 introduced changes to how default apps and taskbar pins are managed, which can complicate traditional deployment methods. Fortunately, there are supported solutions to help streamline this process.
Here are Recommended Solutions
1. Customize the Default User Profile
You can configure a reference profile and copy it to the default user profile so that all new users inherit the same settings:
Set up a local admin account with all desired configurations (Outlook 2019, Teams, Chrome, default apps, taskbar layout)
Use tools like SmartDeploy or manual profile copying to replace C:\Users\Default with your configured profile
Guide: SmartDeploy – Customize Default Profiles in Windows 11
Note: Be cautious when modifying the default profile directly, as improper changes can cause login issues.
2. Configure Taskbar Pins via XML and Group Policy
Microsoft supports taskbar customization using a LayoutModification.xml file:
Create an XML file that pins Outlook 2019, Teams, and Chrome
Unpin Windows Outlook, Microsoft Store, and Edge
Deploy via Group Policy or Intune
Guide: Microsoft Learn – Configure Taskbar Pinned Apps
3. Set Default Apps Using GPO or MDM
Windows 11 requires mapping file extensions to apps explicitly. You can:
Export default app associations from a configured machine using: cmd dism /online /export-defaultappassociations:"C:\DefaultApps.xml"
Import via GPO or Intune using: cmd dism /online /import-defaultappassociations:"C:\DefaultApps.xml"
Ensure the XML is correctly formatted and deployed before user profile creation.
4. Remove Windows Outlook (New Outlook)
The new Windows Outlook is part of the system app bundle and may reappear with updates. To suppress it:
Use PowerShell to remove the app for all users: powershell Get-AppxPackage Outlook | Remove-AppxPackage
Use provisioning package or GPO to prevent reinstallation
Note: Some system apps may reinstall after feature updates unless blocked via policy or script.
By combining default profile customization, XML-based taskbar layout, and default app association deployment, you can significantly reduce manual setup and ensure consistency across user profiles. Removing or suppressing unwanted apps like Windows Outlook can further reduce support tickets.
Let me know how it goes, and if this answer helps, feel free to hit “Accept Answer” so others can benefit too 😊 T&B, Domic.