Posts

Remove Bing Search from Windows 11

5 months ago · By Engineerisaac · Public
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 are on the post page: View comments