ID: Q135986
The information in this article applies to:
In Windows Explorer, you can have a program create a custom Find utility for the Start Menu. For an example, look at how The Microsoft Network adds a custom Find "On the Microsoft Network..." option to Windows 95 when the user signs up on The Microsoft Network.
The first step to registering a custom Find utility is to implement a shell context menu extension that supplies the menu item. The handler's IContextMenu::InvokeCommand() member will be called whenever the user selects the custom Find utility on the Start Menu.
The context menu extension can be registered by adding some information for the handler to the following key in the registry:
    \HKEY_LOCAL_MACHINE
        \Software
            \Microsoft
                \Windows
                    \CurrentVersion
                        \Explorer
                            \FindExtensions
                                \Static
To summarize, you need to add the following under the ..\FindExtensions\Static key in the registry:
    \MyFind = <GUID>
        \0 = <Text for the menu item>
            \DefaultIcon = <path to dll, index of icon in dll>
You can find additional information on writing context menu handlers in:
Keywords          : kbContMenu kbExtension kbNTOS400 kbWinOS95 kbWinOS98 kbshell 
Issue type        : kbhowtoLast Reviewed: January 1, 1999