If you run a .NET application from a partitially trusted location a yellow balloon tip appears telling the user that maybe not all functionality will be available due to security restrictions.
There are situations where you do not want this balloon to show up - for example when deployment within your corporate intranet.
Put the following three lines into a .REG file and import them into the registry. But notice: This will disable ALL balloon tips on your system (e.g. "low disk space", ...).
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"EnableBalloonTips"=dword:00000000
On more information about No-Touch Deployment visit www.dotnet-online.com/notouch/.
This post is intended for you if you answer at least one of the following questions with YES.
- You're not satisfied with the "Find Files and Folders" view in Windows XP?
- You liked the traditional Windows 2000 "Find Files and Folders" view?
- You don't like dogs?
Nothing against the cute little dog, but...
NO, the Windows XP search was the one features I really would never get used to.
And YES, you can switch to the old-fashioned / Windows 2000-style search view by copying the following lines in a .REG file and importing it into your registry.
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
"Use Search Asst"="no"
That's it! Enjoy!
Download the zipped .REG file