Yes, you can delete Copilot in Windows by uninstalling the app or removing its package, then turning off any remaining entry points.
“Copilot” can mean a few different things: the Windows Copilot app, the Copilot button in Microsoft Edge, or paid Copilot features inside Microsoft 365 apps. If you want it gone, the right steps depend on which one you’re seeing.
This guide walks you through the clean options, starting with the easy remove. You’ll also get a checklist for keeping it from coming back after updates.
Know Which Copilot You’re Trying To Remove
Before you start uninstalling things, take 30 seconds to identify what “Copilot” is on your device. The name gets reused across products, and that’s where most people waste time.
| Where You See Copilot | Can You Remove It? | What Works Best |
|---|---|---|
| Windows app (Start menu, taskbar) | Usually yes | Uninstall from Settings, then remove package if needed |
| Windows entry points (taskbar button, shortcuts) | Yes | Turn off taskbar toggle, disable Windows Copilot via device settings |
| Microsoft Edge button/side pane | Hide or disable | Turn off the toolbar button and the side pane in Edge settings |
| Microsoft 365 apps (Word, Excel) | Depends on license | Turn off the feature in app settings or remove the add-in where available |
| GitHub Copilot (code editor) | Yes | Disable or uninstall the extension in your editor |
If you only want the icon gone, you can stop after the quick toggles. If you want the app removed, keep going.
Deleting Copilot On Windows 11 Safely
This section targets the Windows Copilot app you can launch from the Start menu. On many builds, it’s a Microsoft Store app, so it behaves like other inbox apps.
Remove Copilot From Settings
This is the cleanest path because it uses Windows’ normal uninstall flow.
- Open Settings — Press Win + I, then go to Apps.
- Open Installed Apps — Use the search box and type Copilot.
- Uninstall Copilot — Select the three dots next to Copilot, then pick Uninstall.
- Restart Your PC — A restart clears cached shortcuts and background hooks.
Remove Copilot From The Start Menu If You See It There
On some systems, right-click uninstall from Start works even faster.
- Open Start — Press the Windows key.
- Find Copilot — Type Copilot and wait for it to show in results.
- Uninstall It — Right-click Copilot, then select Uninstall.
Confirm It’s Actually Gone
After removal, take a quick pass to confirm Copilot isn’t still registered under another name. This avoids the classic loop where the icon disappears, then Search still launches it.
- Search The Start Menu — Type Copilot and confirm it no longer appears as an app.
- Check Installed Apps — In Settings, search Installed apps for Copilot and remove any second entry.
- Try The Link Handler — Press Win + R, type
ms-copilot:, and confirm it doesn’t open Copilot.
When Uninstall Is Missing Or It Comes Back
Two things can cause déjà vu: the app is provisioned for new accounts, or your device is managed and re-deploys it. You can still remove it, but you’ll use PowerShell and a little caution.
- Open PowerShell As Admin — Search PowerShell, right-click, choose Run as administrator.
- List Installed Packages — Run
Get-AppxPackage *Copilot*and note the package name that matches Windows Copilot. - Remove The App For Your User — Run
Get-AppxPackage *Copilot* | Remove-AppxPackage. - Remove The Provisioned Copy — Run
Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -like "*Copilot*"} | Remove-AppxProvisionedPackage -Online.
That last step stops Windows from auto-installing it for new user profiles. Microsoft documents the provisioning removal flow in the Remove-AppxProvisionedPackage cmdlet reference.
Turn Off Remaining Copilot Entry Points
After you uninstall, you might still see Copilot entry points. These are not always the app itself. Think of them as launch surfaces: a taskbar button, a keyboard shortcut, or a link handler that calls the app if it exists.
Hide The Taskbar Button
- Open Taskbar Settings — Right-click the taskbar, then select Taskbar settings.
- Toggle Off Copilot — Find Copilot and switch it off.
Block Windows Copilot On Managed PCs
If you’re on a work or school device, uninstall may be blocked. The reliable route is to disable Windows Copilot at the device level, so the icon and usage are disabled when the feature is present.
Microsoft lists the setting and behavior in its Policy CSP WindowsAI documentation. If you manage devices with MDM, this is the setting you want to review.
Stop Copilot From Opening By Shortcut
If your build offers a keyboard shortcut for Copilot, removing the app usually makes the shortcut do nothing. If the shortcut still opens a side panel, confirm you removed the app package and restarted. A restart is boring, but it’s the step that clears stale links.
Remove Copilot From Microsoft Edge
Edge Copilot is separate from Windows Copilot. You can uninstall the Windows app and still see a Copilot icon in Edge.
Hide The Copilot Button
- Open Edge Settings — Select the three dots menu, then choose Settings.
- Open Appearance — Go to Appearance, then open the Copilot and sidebar area.
- Turn Off The Toolbar Button — Switch off the setting that shows Copilot on the toolbar.
Disable The Side Pane
- Open Sidebar Settings — In the same area, find sidebar or hubs settings.
- Switch Sidebar Off — Turn off the side pane so it can’t slide in.
If you manage Edge with policies, Microsoft documents Copilot-related policy switches, including toolbar icon controls, in its Edge policy library.
What To Do If You’re Seeing Microsoft 365 Copilot
Copilot inside Word, Excel, or Outlook is not the same as the Windows app. It’s tied to a Microsoft 365 setup, and the remove path depends on how your account is licensed.
Check Whether It’s A License Feature Or A Toggle
If Copilot appears inside an app ribbon, start by checking the app’s options and privacy settings. Some builds let you turn off AI features per app. Other builds show the icon because the account has a license that enables it.
- Look For An In-App Toggle — Open the app’s Options or Settings area and search for Copilot or AI features.
- Sign Out And Back In — A stale account token can keep features visible after changes.
- Confirm Your Account Type — Work and school tenants may enforce features across the suite.
If you’re on a managed tenant, your admin controls many of these switches. On a personal account, the feature set can change with your subscription tier.
If You Meant GitHub Copilot Or Another Copilot
A lot of people search this question while staring at an editor plugin. If you meant GitHub Copilot, deletion is just an extension uninstall.
Remove It From Visual Studio Code
- Open Extensions — Press Ctrl + Shift + X.
- Search GitHub Copilot — Select the extension entry.
- Disable Or Uninstall — Choose Disable to pause it, or Uninstall to remove it.
Remove It From JetBrains IDEs
- Open Settings — Go to Plugins.
- Find GitHub Copilot — Select it in the list.
- Uninstall The Plugin — Restart the IDE when prompted.
If your goal is stopping suggestions in a single project, disabling is often faster than uninstalling, and you can flip it back later.
Common Snags And Fixes That Actually Work
Copilot removal issues usually fall into a few buckets. The fixes below are practical and low-risk.
Copilot Uninstalls But The Icon Stays
- Restart The PC — Clear pinned icons and cached app registration.
- Unpin The Taskbar Icon — Right-click the icon and unpin it.
- Check Taskbar Settings — Turn the Copilot toggle off.
Copilot Reappears After A Windows Update
- Remove The Provisioned Package — Use the provisioning removal command so new profiles don’t get it.
- Recheck Installed Apps — Updates can reinstall Store apps.
- Apply Device-Level Blocking — Use the WindowsAI setting on managed devices.
You Can’t Uninstall On A Work Or School Device
- Check For Management — Open Settings, search for “work or school,” and see if an account is connected.
- Use Allowed Toggles — Turning off taskbar entry points is often permitted even when uninstall is blocked.
- Ask Your Admin For A Change — If Copilot violates internal rules, device policies are the right fix.
You Want It Gone, Yet You Don’t Want To Break Search Or Widgets
Stick to uninstall and supported policy settings. Avoid random scripts that remove large groups of inbox apps in one go unless you know exactly what each package does. When you remove the wrong inbox app, Windows setup and account sign-in can get weird.
Keep Copilot From Coming Back
Once you’ve removed Copilot, the goal is staying removed. This is where a small checklist saves repeated work.
- Turn Off Taskbar Entry Points — Taskbar settings should keep the icon from returning.
- Remove The Provisioned Package — This stops re-install for new user profiles on the same PC.
- Review Startup Items — In Task Manager, check Startup apps for anything Copilot-related.
- Check Edge After Updates — Edge can re-enable toolbar buttons after feature updates, so confirm the toggle.
- Use Device Policies Where Available — On managed fleets, set the WindowsAI rule once and keep it consistent.
If your only goal is a cleaner screen, hiding the icon and side pane is often enough. If your goal is reclaiming disk space and removing the app entirely, uninstall plus package removal is the combo that sticks.