There are tips available on the Web on how to add the Register and Unregister commands in the context menu for DLL and OCX file types. The option is quite handy, instead of us having to manually type the regsvr32.exe command line. But what if you’re using Windows Vista?
In Windows Vista with User Account Control (UAC) enabled, you require to elevate a task whenever a system-wide operation is to be carried out. Registering system DLLs from a non-elevated state may cause an error. For example, try to register the system module JScript.dll from Start, Search box (i.e. without elevating it). You’re sure to see the error 0×80004005 (ACCESS IS DENIED) when you do so.

Whereas, registering the DLL from an elevated Command Prompt window should work fine:

Register DLLs Elevated Using the Context Menu
To add the Register command in the context menu that’ll run the Regsvr32.exe command under elevated rights, you need to use the runas verb. Here is a REG file that I created, adds the runas verb for DLL and OCX file types in the following registry keys:
1. Download the file register_runas.reg and save to Desktop.
2. Right-click on the file and choose Merge.
3. Click Yes when you’re asked for confirmation.
You should now see the Register (as Administrator) command in the right-click menu for DLL and OCX file types.

More Information
To recollect things, we’ve referenced runas in these articles:
- Open an elevated Command Prompt from the folder context menu
- Elevate a Vbscript file using the "runas" parameter in ShellExecute
Likewise, the runas verb can be used with any file type.
Related Posts
- Fix for Windows Installer Errors 2738 and 2739 in Windows Vista
- Adding the Run as Administrator Option for .VBS and .JS Files
- Add “Edit HOSTS File” Option in the Context Menu
- How to Run a Program Elevated via the Right-Click Menu in Windows 7/Vista?
- Open an Elevated Command Prompt From the Desktop Context Menu
If you enjoyed this post, make sure you subscribe to our RSS feed! We feature Tips, Troubleshooting information, Scripts and Utilities for Microsoft Windows Operating Systems!
Prefer an E-mail subscription?




