Removing Microsoft Copilot from Windows 11
2026 Edition
Microsoft has increasingly integrated its AI assistant, Copilot, into the fabric of Windows 11. While many users welcome the convenience, IT administrators and privacy-conscious individuals often need to remove or disable the consumer Copilot app from managed environments.
Based on the latest updates from early 2026, Microsoft has officially provided several supported methods to uninstall the app, ranging from Group Policy to PowerShell scripts and Intune configurations. This guide consolidates the most effective, reliable methods to remove Copilot from Windows 11.
Why Remove Copilot?
Before diving into the technical steps, it’s worth understanding why organizations and users choose to remove Copilot:
- Data Privacy: Preventing AI from processing local data.
- Compliance: Meeting strict regulatory requirements that prohibit unauthorized AI tools.
- User Experience: Reducing distractions or unwanted UI elements like the taskbar button or hardware key.
- Resource Management: Freeing up system resources on older hardware.
Method 1: Using Group Policy (Recommended for Enterprise)
Microsoft introduced a dedicated Group Policy setting specifically for this purpose, available in Windows 11 Insider Preview Build 26220.7535 (KB5072046) and subsequent public releases.
Steps
- Open Group Policy Editor
- Press Win + R, type gpedit.msc, and hit Enter.
- Navigate to the Policy
- Go to User Configuration > Administrative Templates > Windows AI.
- Enable the Removal Policy
- Locate Remove Microsoft Copilot App.
- Double-click it, select Enabled, and click OK.
- Apply Changes
- Sign out and sign back in, or restart the device. The app will be uninstalled for the targeted user.
Method 2: PowerShell Script (Quick & Effective)
For administrators who prefer command-line tools or need to script the removal across multiple machines, PowerShell offers a robust solution.
The Script
Run the following commands in an Administrator PowerShell window:
Procedure
1. Uninstall the existing Copilot package
Get-AppxPackage Copilot | Remove-AppxPackage
2. Remove the provisioned package to prevent auto-reinstallation
Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -like "Copilot"} | Remove-AppxProvisionedPackage -Online
3. Disable future installation via Registry
$regPath = 'HKLM:\Software\Policies\Microsoft\Windows\WindowsCopilot'
if (-not (Test-Path $regPath)) { New-Item -Path $regPath -Force | Out-Null }
New-ItemProperty -Path $regPath -Name 'AllowWindowsCopilot' -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path $regPath -Name 'HideCopilotButton' -PropertyType DWord -Value 1 -Force
What This Does:
- Removes the current user’s Copilot app.
- Cleans up the system image to prevent new user profiles from getting it.
Sets registry keys to block future installations and hide the UI button.
After running the script, reboot your machine or run gpupdate /force to ensure policies apply immediately.
Method 3: Microsoft Intune (For Cloud-Managed Devices)
Organizations using Microsoft Intune can deploy the removal policy remotely without touching local Group Policy.
Option A: Administrative Template Profile
- Go to Devices > Configuration profiles > Create profile.
- Select Windows 10 and later > Templates > Administrative templates.
Navigate to User > Administrative templates > Windows AI. - Enable Remove Microsoft Copilot App.
Option B: Custom OMA-URI
For more granular control, use a custom OMA-URI configuration
- Name: ./User/Vendor/MSFT/Policy/Config/WindowsAI/RemoveMicrosoftCopilotApp
- Value: 1 (Integer)
Once deployed, sync the device to apply the change.
Method 4: Registry Edit (Manual Alternative)
If Group Policy isn’t available (e.g., Windows Home edition), you can manually edit the registry.
Steps
- Press Win + R, type regedit, and hit Enter.
- Navigate to:
- HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsAI
(If the WindowsAI key doesn’t exist, create it.) - Create a new DWORD (32-bit) Value named RemoveMicrosoftCopilotApp.
Set its value to 1.
- HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsAI
- Restart the computer.
Important Considerations
Reversibility
All methods described here are reversible. Users can reinstall Copilot from the Microsoft Store unless you also restrict Store access via additional policies.
Hardware Keys
Some newer laptops come with a dedicated Copilot key. To remap or disable it:
- Use Group Policy: User Configuration > Administrative Templates > Windows Copilot > Set Copilot Hardware Key.
- Set it to Search or a custom action.
Updates and Future Changes
Microsoft frequently updates Windows 11. While these methods are current as of early 2026, always test in a non-production environment first. If a method stops working after an update, check for new policy names or registry paths.
Conclusion
Removing Microsoft Copilot from Windows 11 is now a supported, straightforward process thanks to Microsoft’s official Group Policy and Intune integrations. Whether you’re an IT admin managing hundreds of devices or a home user seeking a cleaner interface, the methods outlined above provide reliable, documented ways to take control of your Windows experience.