Balloon tips OFF in windows
Want to get rid of those nasty balloon tips, hovering over the task tray? Here’s the registry command:
1 |
reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" /t REG_DWORD /v EnableBalloonTips /d 0 |
If you’d wish to re-enable them again, this is the code
1 |
reg add "HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" /t REG_DWORD /v EnableBalloonTips /d 1 |