Article ID: 135986
Article Last Modified on 7/11/2005
\HKEY_LOCAL_MACHINE
\Software
\Microsoft
\Windows
\CurrentVersion
\Explorer
\FindExtensions
\Static
Under this key, your program needs to add a key, such as MyFind, for the
context menu extension that contains the GUID for the context menu handler.
Under MyFind, your program needs to create a second key "0" that contains
the text of the menu item you want to include. Finally, under the "0" key,
you need to create a third key "DefaultIcon" that contains the name of a
.dll file that contains the icon you want displayed on the menu and the
index of the icon in that .dll file.
\MyFind = <GUID>
\0 = <Text for the menu item>
\DefaultIcon = <path to dll, index of icon in dll>
The context menu handler must also be registered normally as documented in
the Win32 SDK.
Keywords: kbhowto kbshell kbextension kbcontmenu KB135986