Follow us on Twitter

Have a question on something? Visit the forum for help.

NEW!! LazyNetworkAdmin Forums! Click -> here

 

Disable Balloon Tips On A Local Or Remote Computer PDF Print E-mail

I really hate balloon tips, and if you're like me I'll bet you hate them too. This script will disable balloon tips on any computer.

Copy and paste the following text into notepad and save it as a .vbs file.

----------COPY EVERYTHING BELOW THIS LINE----------

'This script will disable balloon tips.
'By Cheyenne Harden 3-20-06
'____________________________________________________________

const HKEY_CURRENT_USER = &H80000001
strComputer = inputbox("Enter Target computer's IP or name.",title,".")
Set StdOut = WScript.StdOut

Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")

strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" 'Path
oReg.CreateKey HKEY_CURRENT_USER,strKeyPath 'The HKey you are using and Path


strValueName = "EnableBalloonTips" 'Name of a DWORD you want to Create
dwValue = 0
oReg.SetDWORDValue HKEY_Current_User,strKeyPath,strValueName,dwValue

----------COPY EVERYTHING ABOVE THIS LINE----------

Here is what you need to know to run this script:
1. Name of the computer you are targeting

This information is provided "AS IS" with no warranty expressed or implied.




Add this page to your favorite Social Bookmarking websites
Reddit! Del.icio.us! Mixx! Free and Open Source Software News Google! Live! Facebook! StumbleUpon! TwitThis Joomla Free PHP
 
 

Sponsored Links