' ============================================================
' SetDisableBalloonTips.vbs
'
' Disable Balloon Tip Notifications.
' Disables the small notification balloon tips in the system tray.
'
' Usage: cscript SetDisableBalloonTips.vbs
' ============================================================

Option Explicit

Dim objShell
Set objShell = CreateObject("WScript.Shell")

On Error Resume Next
objShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\EnableBalloonTips", 0, "REG_DWORD"

If Err.Number = 0 Then
    WScript.Echo "Disable Balloon Tip Notifications applied."
Else
    WScript.Echo "Failed to apply tweak (Error " & Err.Number & ": " & Err.Description & ")"
End If
On Error Goto 0