🖥️ Batch (CMD)

Check "Disable Balloon Tip Notifications" Status (Batch)

Uses reg query to check the current value behind the "Disable Balloon Tip Notifications" tweak.

By WindowsScripting.com · 486 B
CheckDisableBalloonTipsStatus.bat
@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