🧩 How to Completely Remove Copilot from Windows 11: A Complete Guide
Microsoft Copilot is now deeply integrated into Windows 11, but not everyone wants this AI assistant active on their system. Whether it’s for privacy, resource optimization, or policy compliance, you can disable or completely remove it with a few administrative steps.
💡 Why Remove Copilot?
Administrators and advanced users often uninstall Copilot for the following reasons:
- Privacy – Copilot may process data that’s sent to Microsoft services.
- Performance – Removing background AI services can reduce CPU and RAM usage.
- Policy Compliance – Some enterprises restrict AI-powered tools to protect corporate data.
- User Preference – Many prefer a cleaner, distraction-free Windows interface.
⚙️ Method 1: Remove via PowerShell (Recommended)
The most reliable approach is using PowerShell with elevated privileges.
Step 1 – Launch PowerShell as Administrator
- Press Win + X and choose Windows PowerShell (Admin) or Terminal (Admin).
- Confirm the User Account Control prompt with Yes.
Step 2 – Uninstall Copilot Components
Run each command separately:
# Remove Copilot package
Get-AppxPackage -allusers *copilot* | Remove-AppxPackage -allusers
# Remove Start Experience package
Get-AppxPackage -allusers *startexperience* | Remove-AppxPackage -allusers
# Remove Web Experience package
Get-AppxPackage -allusers *webexperience* | Remove-AppxPackage -allusers
Step 3 – (Optional) Remove Bing-Related Apps
If you want to declutter further:
Get-AppxPackage -allusers *bing* | Remove-AppxPackage -allusers
💡 Tip: Reboot after running these commands to complete removal.
🏢 Method 2: Use Group Policy (Windows Pro/Enterprise)
If you manage multiple systems through Group Policy:
- Press Win + R, type
gpedit.msc, and hit Enter. - Navigate to:
Computer Configuration > Administrative Templates > Windows Components > Windows Copilot - Double-click Turn off Windows Copilot and set it to Enabled.
- Restart the computer.
This disables Copilot system-wide and prevents users from re-enabling it.
🧱 Method 3: Registry Modification (Manual Method)
⚠️ Always create a restore point or export your registry before editing.
- Press Win + R, type
regedit, and press Enter. - Navigate to:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot - Right-click → New > DWORD (32-bit) Value → name it
TurnOffWindowsCopilot. - Set its Value Data to
1. - Restart your PC.
🔍 Verify Copilot Removal
After rebooting:
- The Copilot icon should disappear from the taskbar.
- The Win + C shortcut should do nothing.
- Settings > Privacy & security should no longer list Copilot-related options.
🧠 Important Considerations
Windows Updates
Major feature updates may reinstall Copilot automatically. Re-run the PowerShell commands after each major update.
System Stability
While generally safe, removing system packages can affect Windows features. Create a System Restore Point before removal.
Enterprise Deployment
Test these commands in a controlled environment before pushing them organization-wide via Intune or Configuration Manager.
🚫 Alternative – Disable Instead of Remove
If you only want to hide Copilot:
- Right-click the taskbar.
- Select Taskbar settings.
- Toggle off Copilot (Preview).
This disables Copilot but keeps the package intact.
🧩 Troubleshooting
| Issue | Possible Fix |
|---|---|
| Access Denied error | Run PowerShell as Administrator |
| Command not recognized | Update to latest PowerShell or Windows Terminal |
| Copilot reappears | Reapply script after Windows updates |
| Group Policy missing | Verify you’re using Windows 11 Pro/Enterprise |
✅ Conclusion
Removing Copilot from Windows 11 gives administrators more control, improves performance, and addresses privacy or compliance concerns.
PowerShell provides the cleanest method, while Group Policy and Registry edits offer additional flexibility for enterprise use.
Stay alert for upcoming Windows updates — Microsoft continues integrating AI features, so periodic checks ensure your system remains configured exactly as you prefer.

