How to Completely Remove Copilot from Windows 11


🧩 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

  1. Press Win + X and choose Windows PowerShell (Admin) or Terminal (Admin).
  2. 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:

  1. Press Win + R, type gpedit.msc, and hit Enter.
  2. Navigate to:
    Computer Configuration > Administrative Templates > Windows Components > Windows Copilot
  3. Double-click Turn off Windows Copilot and set it to Enabled.
  4. 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.

  1. Press Win + R, type regedit, and press Enter.
  2. Navigate to:
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot
  3. Right-click → New > DWORD (32-bit) Value → name it TurnOffWindowsCopilot.
  4. Set its Value Data to 1.
  5. 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:

  1. Right-click the taskbar.
  2. Select Taskbar settings.
  3. Toggle off Copilot (Preview).

This disables Copilot but keeps the package intact.


🧩 Troubleshooting

IssuePossible Fix
Access Denied errorRun PowerShell as Administrator
Command not recognizedUpdate to latest PowerShell or Windows Terminal
Copilot reappearsReapply script after Windows updates
Group Policy missingVerify 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.


Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top