🖥️ Batch (CMD)
Disable Bing Search Suggestions (Batch)
Stops the taskbar search box from showing web/Bing suggestions. Applies the tweak via reg.exe.
SetDisableBingSearch.bat
@echo off
:: ============================================================
:: SetDisableBingSearch.bat
::
:: Disable Bing Search Suggestions.
:: Stops the taskbar search box from showing web/Bing suggestions.
:: ============================================================
reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer" /v "DisableSearchBoxSuggestions" /t REG_DWORD /d "1" /f
if %ERRORLEVEL% EQU 0 (
echo Disable Bing Search Suggestions applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause