Remove Bing Search from Windows 11

By Engineerisaac · 2025-11-17 12:48:54 Public
Back to feed

I wrote a batch file that disables start search in one click. Have fun

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
echo Disabling Windows 11 Web Search...

echo Attempting Disable Search Suggestion System (Might need elevated permission)
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

echo Attempting Disable Policy System (Might need elevated permission)
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchPolicySuggestions /t REG_DWORD /d 1 /f

echo Turning off Bing Search Systems
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v BingSearchEnabled /t REG_DWORD /d 0 /f

echo Allowing Search Local
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v AllowSearchToUseLocation /t REG_DWORD /d 0 /f

:: For newer Windows 11 builds (SearchApp)
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v DisableWebSearch /t REG_DWORD /d 1 /f

echo.
echo Web search disabled.
pause
Comments
Log in to add a comment.
No comments yet.