@echo off
:: ============================================================
:: CheckDisableBingSearchStatus.bat
::
:: Checks whether "Disable Bing Search Suggestions" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer" /v "DisableSearchBoxSuggestions" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'DisableSearchBoxSuggestions' is not set (using the Windows default^).
)
pause