@echo off
:: ============================================================
:: SetDisableBalloonTips.bat
::
:: Disable Balloon Tip Notifications.
:: Disables the small notification balloon tips in the system tray.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "EnableBalloonTips" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Balloon Tip Notifications applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause