I know it is used to "Register or unregister a DLL". But I want more. Why do we need to register a DLL? When should we register a DLL?
|
feedback
|
|
It's used when registering COM components that various applications require. It will be very rare that you will need to use this yourself, but one common usage is to unregister and then reregister a DLL if you are experiencing problems or need to install a particular version. Most of the time an application installer will call this behind this scenes.
| |||
|
feedback
|
|
Yep, its just like chrisF said, Here is a KB article from microsoft explaining it as well and Here is a KB article explaining what a DLL is. Think of them as library files for programs on your computer. They hold instructions on how to do different things for different programs. When you register it you are telling your computer that you have these instructions, where there at and programs that say they need them can use them now. | |||
|
feedback
|
|
Re-registering dll's is common to do when fixing many Windows issues including repairing Windows Update when it stops working, see method 2, also see some of the links in "More Information" section | |||
|
feedback
|