Windows 11 Outlook for Windows/Outlook new bloatware
Windows 11 bloatware: Outlook for Windows (Outlook new) and Microsoft 365 (Office).
Even though we removed these native apps in Windows 10 when we updated to Windows 11, the apps are getting installed. Does anyone know a way to remove these bloatware using the KACE SMA?
Answers (1)
Top Answer
write a nice powershell script which collects and uninstalls all software and run this via scripting.
For instance with Get-AppxPackage *Outlook* you should get the Outlook apps.
And with Remove-AppxPackage you will uninstall it.
So a single line Get-AppxPackage *Outlook* | Remove-AppxPackage should do the trick.
Please use it as a start for your own scripting and neither me nor Quest Support can be taken responsible for any issues and also will not support you here.