🖥️ Batch (CMD)
Check "Disable Start Menu Web Search" Status (Batch)
Uses reg query to check the current value behind the "Disable Start Menu Web Search" tweak.
CheckDisableWebSearchStatus.bat
@echo off
:: ============================================================
:: CheckDisableWebSearchStatus.bat
::
:: Checks whether "Disable Start Menu Web Search" is currently applied.
:: ============================================================
reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search" /v "BingSearchEnabled" 2>nul
if %ERRORLEVEL% NEQ 0 (
echo.
echo 'BingSearchEnabled' is not set (using the Windows default^).
)
pause