Disable Microsoft Edge Copilot and AI Features Using PowerShell on Windows Server 2019 and Windows 10/11
Microsoft Edge has rapidly evolved from a traditional web browser into an AI-powered productivity platform. Recent versions of Microsoft Edge include feature...
Microsoft Edge has rapidly evolved from a traditional web browser into an AI-powered productivity platform. Recent versions of Microsoft Edge include features such as Microsoft Copilot, AI-powered writing assistance, Shopping Assistant, Sidebar, Discover, Microsoft 365 Copilot integration, and personalized recommendations. While these features can improve productivity for some users, they may not be desirable in enterprise environments.
For organizations running Windows Server 2019 Remote Desktop Services (RDS), Citrix environments, Virtual Desktop Infrastructure (VDI), educational institutions, and corporate networks, these AI features can increase memory usage, consume additional CPU resources, create unnecessary network traffic, and distract users from business applications.
Fortunately, Microsoft provides administrative policies that allow IT administrators to disable these features centrally using PowerShell and Group Policy registry settings. This guide explains how to disable Microsoft Edge Copilot and related AI capabilities for all users on Windows Server 2019, Windows Server 2022, Windows 10, and Windows 11.
Why Disable Microsoft Edge AI Features?
Many organizations prefer a lightweight, predictable browser experience. Disabling AI features offers several advantages:
- Reduced RAM usage
- Lower CPU consumption
- Faster browser startup
- Reduced background network activity
- Improved Remote Desktop performance
- Fewer background processes
- Enhanced privacy
- Reduced distractions for employees
- Better compliance with corporate IT policies
- Simplified browser interface
These improvements are especially valuable on shared Remote Desktop Servers where dozens of users may be running Microsoft Edge simultaneously.
Microsoft Edge AI Features That Can Be Disabled
Administrators can disable several AI-related components, including:
- Microsoft Copilot
- Microsoft 365 Copilot Chat
- Edge Sidebar
- Discover Button
- AI Writing Assistant (Compose)
- Shopping Assistant
- Personalized Recommendations
- Startup Boost
- Background Mode
- Mini Search Menu
- Personalization Reporting
Disabling these features results in a cleaner, faster, and more manageable browser.
PowerShell Script to Disable Microsoft Edge Copilot and AI Features
Run the following script from an elevated PowerShell window (Run as Administrator):
# Disable Microsoft Edge Copilot / AI / Sidebar for all users
$EdgePolicyPath = "HKLM:\SOFTWARE\Policies\Microsoft\Edge"
New-Item -Path $EdgePolicyPath -Force | Out-Null
$Policies = @{
"HubsSidebarEnabled" = 0
"Microsoft365CopilotChatIconEnabled" = 0
"ComposeInlineEnabled" = 0
"QuickSearchShowMiniMenu" = 0
"EdgeShoppingAssistantEnabled" = 0
"ShowRecommendationsEnabled" = 0
"PersonalizationReportingEnabled" = 0
"BackgroundModeEnabled" = 0
"StartupBoostEnabled" = 0
}
foreach ($Policy in $Policies.GetEnumerator()) {
New-ItemProperty `
-Path $EdgePolicyPath `
-Name $Policy.Key `
-PropertyType DWord `
-Value $Policy.Value `
-Force | Out-Null
}
taskkill /F /IM msedge.exe 2>$null
Write-Host "Microsoft Edge AI features disabled successfully." -ForegroundColor Green
What Each Policy Does
HubsSidebarEnabled
Disables the Microsoft Edge Sidebar, which also removes the Copilot interface.
Benefit:
- Cleaner interface
- Reduced memory usage
Microsoft365CopilotChatIconEnabled
Removes the Microsoft 365 Copilot Chat icon from Edge.
Benefit:
- Eliminates Microsoft 365 AI integration
- Cleaner toolbar
ComposeInlineEnabled
Turns off AI-powered writing assistance.
Benefit:
- Prevents AI text generation
- Reduces unnecessary cloud communication
QuickSearchShowMiniMenu
Disables the floating mini menu that appears after selecting text.
Benefit:
- Less screen clutter
- Fewer accidental AI prompts
EdgeShoppingAssistantEnabled
Disables Microsoft's shopping recommendations and coupon suggestions.
Benefit:
- Faster browsing
- No shopping distractions
ShowRecommendationsEnabled
Disables Microsoft recommendations throughout the browser.
Benefit:
- Cleaner browsing experience
PersonalizationReportingEnabled
Stops Edge from sending personalization information for recommendation services.
Benefit:
- Improved privacy
- Reduced telemetry
BackgroundModeEnabled
Prevents Edge from continuing to run after all browser windows are closed.
Benefit:
- Saves RAM
- Frees CPU resources
StartupBoostEnabled
Disables Edge Startup Boost.
Benefit:
- Faster Windows startup
- Lower idle memory usage
Verify the Policies
Open Microsoft Edge and browse to:
edge://policy
You should see the configured policies listed as disabled.
Deploying Across Multiple Computers
The registry settings created by the script reside under:
HKLM\SOFTWARE\Policies\Microsoft\Edge
This makes them ideal for deployment through:
- Group Policy Startup Scripts
- Group Policy Preferences
- Microsoft Intune
- Microsoft Endpoint Configuration Manager (SCCM)
- Remote PowerShell
- PsExec
- Desired State Configuration (DSC)
Benefits for Windows Server 2019 RDS
Organizations using Remote Desktop Services often experience high memory usage when multiple users keep Edge open. Disabling unnecessary AI features can help:
- Reduce RAM usage per session
- Lower CPU utilization
- Improve login performance
- Decrease background processes
- Reduce bandwidth consumption
- Improve overall server responsiveness
For servers supporting 20–50 concurrent users, these optimizations can noticeably improve the user experience.
Best Practices
- Always test policies in a non-production environment before broad deployment.
- Keep Microsoft Edge updated to ensure policy compatibility.
- Combine these settings with other Edge performance optimizations, such as disabling Startup Boost and Background Mode.
- Use Group Policy or Intune for centralized management in enterprise environments.
- Periodically review Microsoft's policy documentation, as new AI-related policies may be introduced in future Edge releases.
Conclusion
Microsoft Edge offers a growing collection of AI-powered tools designed to enhance productivity. However, not every environment benefits from these features. In shared desktops, Remote Desktop Services, VDI deployments, educational labs, and corporate workstations, disabling Copilot, AI writing assistance, shopping features, and background services can improve performance, reduce resource consumption, simplify the user interface, and provide a more controlled browsing environment.
Using a simple PowerShell script and Microsoft-supported policy settings, administrators can efficiently disable these features for all users while maintaining a secure, fast, and business-focused browsing experience.
#MicrosoftEdge #EdgeCopilot #DisableCopilot #PowerShell #WindowsServer2019 #WindowsServer2022 #Windows11 #Windows10 #EdgeAI #EdgeSidebar #Microsoft365 #ITAdmin #SysAdmin #WindowsAdministration #GroupPolicy #Registry #BrowserSecurity #EnterpriseIT #RDS #RemoteDesktop #VDI #Citrix #ServerOptimization #WindowsOptimization #BrowserOptimization #EdgePolicy #EdgeManagement #CorporateIT #PowerShellScript #TechGuide #WindowsTips #SystemAdministrator #Microsoft #BrowserManagement #EnterpriseSecurity #ITSupport #NetworkAdministrator #WindowsServer #EdgeSettings #ComputerAdministration #Infrastructure #PerformanceTuning #SystemOptimization #Privacy #CyberSecurity #Automation #ITInfrastructure #Microsoft365Copilot #BusinessIT #ServerManagement
Was this guide useful?
Your answer helps us keep BISONKB accurate and practical.