@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
|