@echo off
:: ============================================================
:: SetDisableWebSearch.bat
::
:: Disable Start Menu Web Search.
:: Stops the Start Menu search from including web results.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /v "BingSearchEnabled" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Start Menu Web Search applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause