SUMMARY
CustFind.exe is a simple example of a shell context menu
extension that adds a new menu item to the Windows
Start/
Find menu. This procedure is described in the following article in the
Microsoft Knowledge Base:
135986 HOWTO: Add a Custom Find Utility to the Start Menu
CustFind.exe is a self-extracting
archive that contains a Visual C++ 6.0 workspace (CustFind.dsw). This project
contains the code for the context menu extension.
If you use the
Visual C++ 6.0 project file included with the sample to build this project, it
will automatically register the context menu extension in the post-build
step.
If you want to register the context menu extension manually,
simply execute the following from the command line, substituting the path to
where the DLL is located for
<path>:
regsvr32.exe <path>\CustFind.dll
To unregister the context
menu extension and remove the menu from the
Start/
Find menu, execute the following from the command line, substituting
the path where the DLL is located for
<path>:
regsvr32.exe /u <path>\CustFind.dll