Uninstall Microsoft Copilot completely from the system

Windows 11

Active Members
Joined
Dec 10, 2024
Messages
5,631
Many of you might have noticed that Microsoft Copilot was recently installed on several systems without user consent or intervention. I deployed a script to uninstall it from user profiles where it had already been installed using the commands below. However, it still gets installed automatically when a new user logs in.Does anyone know how to remove it from the system image comletely and block future installations?# Remove "Copilot" app for all users Get-AppxPackage -AllUsers | Where-Object { $_.Name -like "*Copilot*" } | ForEach-Object {Remove-AppxPackage -Package $_.PackageFullName -AllUser

Continue reading...
 
Back
Top