@echo off
:: ============================================================
:: CheckDisableBalloonTipsStatus.bat
::
:: Checks whether "Disable Balloon Tip Notifications" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "EnableBalloonTips" 2>nul

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