How can I register (install) a .dll on windows?
To register (install) a .dll on windows Microsoft provided a command-line tool ‘Regsvr32.exe’. Regsvr32 registers .dll files as command components in the windows registry.
When you use Regsvr32.exe, it attempts to load the component and call its DLLSelfRegister function. If this attempt is successful, Regsvr32.exe displays a dialog indicating success. To register dll go to start > Run
Tip..!!
You can also register a dll by creating a .bat file. Now we see example to register dll ‘RTF_to_HTM.dll’. Open Notepad.exe and put text ‘regsvr32 RTF_to_HTM.dll’ and save it.
File Name – registerDLL.bat
Save as Type – All Files




