JSI Tip 10559. How can I customize the information in the Windows XP pop-up (QuickTip) that appears when you hover the cursor over a file on a network share?

Jerold Schulman

June 7, 2006

1 Min Read
ITPro Today logo in a gray background | ITPro Today

The information in the QuickTip pop-up, that is displayed when you hover the cursor over a file on a network share, is controlled by the list of property names to is stored in the QuickTip Value Name, a string data type, at HKEY_CLASSES_ROOT*.

To see the content of the QuickTip Value Name:

1. Open a CMD.EXE window.

2. Type the following command and press Enter:

reg query HKCR* /V QuickTip|find "REG_SZ"

You can add, or remove, property names. See Default Property Names for a Web Catalog

If you wanted to set QuickTip to the same property names as InfoTip plus the addition of the current version number, type the following command and press Enter:

REG ADD "HKCR*" /V QuickTip /T REG_SZ /F /D "prop:Type;DocAuthor;DocTitle;DocSubject;DocComments;Write;Size;DocRevNumber"



Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like