Register/Unregister a DLL in Windows

I always forget this. To register a DLL in windows use the following in a CMD prompt:

regsvr32 $PATH_TO_DLL\DLL_NAME

To unregister a DLL use the following syntax:

regsvr32 /u $PATH_TO_DLL\DLL_NAME


About this entry