This project provides a simple Windows Registry (.reg) script that disables Windows Copilot, Edge sidebar (HubsSidebar), and Bing search suggestions in Windows Search.
Itβs ideal for users or IT administrators who prefer a cleaner, distraction-free Windows environment without Microsoft Copilot or Bing-powered suggestions.
-
π« Disable Windows Copilot
- Prevents Windows Copilot from running for both current user and all users (system-wide).
-
π§ Disable Microsoft Edge Sidebar
- Removes the Edge sidebar ("Hubs Sidebar") which includes Copilot integration.
-
π Disable Bing Search Suggestions
- Removes Bing-powered results from the Windows search box.
This script modifies specific Windows Registry keys under both:
HKEY_CURRENT_USER(affecting the logged-in user)HKEY_LOCAL_MACHINE(affecting all users on the system)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge]
"HubsSidebarEnabled"=dword:00000000
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]
"DisableSearchBoxSuggestions"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"DisableSearchBoxSuggestions"=dword:00000001- Download the
.regfile from this repository. - Double-click the file to apply the changes.
- When prompted by Windows, click Yes to confirm adding the keys to the registry.
- Restart your PC (or log out and back in) for the changes to take effect.
If you want to re-enable Copilot or restore Bing search suggestions, you can:
- Manually delete the registry keys above, or
- Set all DWORD values back to
0instead of1.
Use at your own risk. Modifying the Windows Registry can impact system behavior. Always create a System Restore Point or Registry Backup before applying any changes.
π¦ GitHub: @Xtrios09