Microsoft Edge on Windows 11 comes tightly integrated with Microsoft’s AI ecosystem. Copilot, Bing Chat, shopping assistants, and recommendation engines are built directly into the browser and expanded regularly through updates. While Microsoft doesn’t offer a supported way to uninstall Edge—or completely remove AI from it—you can disable nearly all visible and functional AI features.
This guide walks through every practical method to strip AI from Microsoft Edge on Windows 11. We’ll start with built-in settings, then move into policy-based and registry controls that keep Copilot, chat experiences, and automated recommendations out of sight and largely inactive—even after updates.
What “AI in Microsoft Edge” Actually Includes
Microsoft uses “AI” as an umbrella term inside Edge. Some features are obvious, while others are quietly embedded into the browsing experience.
| Feature | Where It Appears | What It Does | Can It Be Disabled? |
|---|---|---|---|
| Copilot sidebar / chat | Sidebar, toolbar button | AI chat, page summaries, writing help | Yes (settings or policy) |
| Copilot toolbar icon | Top-right corner | Opens Copilot or Bing Chat | Yes |
| Bing chat in search results | Bing result pages | Auto-generated answers | Yes |
| Microsoft 365 Copilot icon | Work or enterprise Edge | AI tied to Microsoft 365 content | Yes (policy/registry) |
| Shopping & recommendation tools | Sidebar, new tab, address bar | Price tracking, deals, suggestions | Yes (policy) |
Edge also includes cloud-driven “smart” features—autofill, spelling, personalization, telemetry—that aren’t always labeled as AI. If your goal is minimal automation and data sharing, those should be disabled too.
Disable Copilot Using Edge Settings (Fastest Method)
This removes Copilot from the Edge interface without touching system policies.
Steps:
- Open Microsoft Edge
- Click ⋯ (three dots) → Settings
- Select Sidebar (or Side panel on some builds)
- Under App-specific settings, choose Copilot
- Turn off:
- Show Copilot
- Show shopping notifications

Close all Edge windows, then relaunch the browser.
The Copilot button and sidebar entry should be gone.
Tip: If you don’t see Copilot options, expand the Edge window—some controls only appear when the settings sidebar has enough width.
Disable Bing Chat on Search Result Pages
Even with Copilot disabled in Edge, Bing search pages can still display AI chat responses.
How to turn it off:
- Open a new tab and go to Bing
- Open Bing settings from the top menu
- Find “Chat response on result page”
- Toggle it Off
After this, Bing results should behave like a traditional search engine, without automatic chat overlays.

Disable Microsoft 365 Copilot Icon (Registry Policy)
On work or Microsoft 365-connected systems, Edge may display a separate Copilot chat icon tied to enterprise data.
Disable it system-wide:
- Open Command Prompt as Administrator
- Run:
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" ^
/v "Microsoft365CopilotChatIconEnabled" /t REG_DWORD /d "0" /f

Restart Edge to apply the change.
This setting mirrors an official Edge policy and is respected across updates—especially on managed systems.
Remove AI-Adjacent and “Smart” Edge Features via Policy
To fully declutter Edge and remove automated suggestions, recommendations, and background services, policies are the most reliable approach.
Run Command Prompt as Administrator, then apply the following (you can paste them as a block):
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "EdgeShoppingAssistantEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "PersonalizationReportingEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "ShowRecommendationsEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "SearchSuggestEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "SpellcheckEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "SyncDisabled" /t REG_DWORD /d "1" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "StartupBoostEnabled" /t REG_DWORD /d "0" /f
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "WebWidgetAllowed" /t REG_DWORD /d "0" /f

Restart Edge when finished.
Result:
No shopping overlays, no search suggestions, no personalization, no background activity, and no AI-driven prompts. Read Microsoft Edge – Policies
Use Group Policy Instead (Windows 11 Pro & Enterprise)
If you’re running Windows 11 Pro or Enterprise, Group Policy is cleaner and more update-resistant than raw registry edits.
Open Group Policy Editor:
- Press Win + R
- Type
gpedit.msc

Key Locations:
| Scope | Path |
|---|---|
| Disable Windows Copilot | User Configuration → Administrative Templates → Windows Components → Windows Copilot |
| Edge AI & Copilot | Computer Configuration → Administrative Templates → Microsoft Edge |
Set “Turn off Windows Copilot” to Enabled, then reboot or run:
gpupdate /force
Disable Copilot at the Windows 11 Level
Edge can still be triggered by OS-level Copilot hooks unless you disable them too.
Do this as well:
- Settings → System → Copilot → Off (if available)
- Settings → Personalization → Taskbar → Copilot → Off
- Registry fallback:
HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsCreate key:WindowsCopilot
Create DWORD:TurnOffWindowsCopilot = 1

Restart Windows.
What You Still Can’t Remove (By Design)
Even after all tweaks, you may still see:
- Disabled or grayed-out Copilot icons
- Bing references in context menus
- Experimental UI elements after updates
Microsoft is explicit: Windows 11 and Edge cannot be installed without AI components, and future updates continue adding more integration. Policies only suppress behavior and UI—they don’t uninstall the infrastructure.
Final Thoughts:
With Copilot disabled, Bing chat removed, shopping tools shut down, personalization blocked, and Windows-level entry points turned off, Microsoft Edge becomes a far more traditional browser. No chat panes. No AI pop-ups. No automated nudges.
You can’t make Edge completely AI-free—but you can make it quiet, predictable, and distraction-free.
Support Tech2Geek ❤️
AI-powered search engines are making it harder for small independent blogs like ours to survive. If you find our guides helpful, please consider supporting us.
You can help by sharing our articles or making a small donation.
☕ Make a Small DonationEvery contribution helps us keep creating free tech guides and reviews.


Comments