Monday, February 27, 2006
Easily Register and Unregister DLL's
If you are ever troubleshooting DLL's on your system, this registry entry can help save you time. It allows you to right click on a DLL file and select the option to register or unregister it.
Just copy this into a text file and save it as "dllreg.reg", run the file and try it.
[HKEY_CLASSES_ROOT.dll]
"Content Type"="application/x-msdownload"
@="dllfile"
[HKEY_CLASSES_ROOT/dllfile]
@="Application Extension"
[HKEY_CLASSES_ROOT/dllfile/Shell/Registercommand]
@="regsvr32.exe "%1""
[HKEY_CLASSES_ROOT/dllfile/Shell/UnRegistercommand]
@="regsvr32.exe /u "%1""