/!\ Don't use this unless you understand what you're doing, please. /!\
CODE
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, itemtype, Title
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\"
p = p & "EnableBalloonTips"
itemtype = "REG_DWORD"
n = 0
WSHShell.RegWrite p, n, itemtype
Title = "Balloon Tips are now Disabled." & vbCR
Title = Title & "You may need to log off/log on" & vbCR
Title = Title & "For the change to take effect."
MyBox = MsgBox(Title,4096,"Finished")
'Declare variables
Dim WSHShell, n, MyBox, p, itemtype, Title
Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\"
p = p & "EnableBalloonTips"
itemtype = "REG_DWORD"
n = 0
WSHShell.RegWrite p, n, itemtype
Title = "Balloon Tips are now Disabled." & vbCR
Title = Title & "You may need to log off/log on" & vbCR
Title = Title & "For the change to take effect."
MyBox = MsgBox(Title,4096,"Finished")
Really, I used it just because I spend a lot of time playing with software and windows defender oft' pops up no less than 10 times an hour, If you don't like not having balloon tips you can always delete the string this code creates. :]