devxlogo

Register and unregister components with context menus

Register and unregister components with context menus

The stardard method to register and unregister ActiveX component is running the REGSVR32 utility, which forces you to bring up the Start|Run dialog and manually type the command line. A much better approach is to have the Register and Unregister commands right in the context menu that appears when you right-click a DLL, EXE, or OCX file in the Explorer window.

To create these menu commands, copy the following text to the clipboard, paste it into an editor (such as Notepad) and save it to a file with a .reg extension, such as ActiveX.Reg. Then double-click the file, and voila!, you’ll be able to register and unregister all types of ActiveX components by right-clicking on them.

Note that the .reg file below assumes that the REGSVR32.EXE utility is your system path, so that it can be run without specifying the complete path. If this is not the case you should move it to the main Windows directory (e.g. C:WINDOWS or C:WINNT) or you should provide the complete path in all the lines of the .reg file that reference it.


Start of the REG file

REGEDIT4; ActiveX DLLs[HKEY_CLASSES_ROOT.dll]@=”dllfile”[HKEY_CLASSES_ROOTdllfileshell
egdll]@=”Register ActiveX DLL”[HKEY_CLASSES_ROOTdllfileshell
egdllcommand]@=”regsvr32.exe “%L””[HKEY_CLASSES_ROOTdllfileshellunregdll]@=”Unregister ActiveX DLL”[HKEY_CLASSES_ROOTdllfileshellunregdllcommand]@=”regsvr32.exe /u “%L””; ActiveX Controls[HKEY_CLASSES_ROOT.ocx]@=”ocxfile”[HKEY_CLASSES_ROOTocxfileshell
egocx]@=”Register OCX Control”[HKEY_CLASSES_ROOTocxfileshell
egocxcommand]@=”regsvr32.exe “%L””[HKEY_CLASSES_ROOTocxfileshellunregocx]@=”Unregister OCX Control”[HKEY_CLASSES_ROOTocxfileshellunregocxcommand]@=”regsvr32.exe /u “%L””; ActiveX EXEs[HKEY_CLASSES_ROOT.exe]@=”exefile”[HKEY_CLASSES_ROOTexefileshell
egexe]@=”Register ActiveX EXE”[HKEY_CLASSES_ROOTexefileshell
egexecommand]@=””%L” /regserver”[HKEY_CLASSES_ROOTexefileshellunregexe]@=”Unregister Active EXE”[HKEY_CLASSES_ROOTexefileshellunregexecommand]@=””%L” /unregserver”


End of the REG file
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist