Unregister library DLL

Unregister library DLL



When you uninstall a program from your operating system, the uninstall process usually takes care of all the application files deletion, removal, unregistration, and other handling. However, in many cases, the uninstall process uninstalls the application files but does not do anything for the libraries.

Malware, spyware, spamware, and other insidious trash is a category on its own. These programs like to install libraries and leave them in your system. If you want to get rid of these programs, you have to unregister their libraries manually in many cases.

Unregistering a library can also be utilized when troubleshooting problems.

How do I unregister a DLL library?

Go to your Start menu, click the Run button and then execute the following command

regsvr32 /u <path & filename of dll or ocx>

An example of this would be

regsvr32 /u C:\WinNT\system32\ljjjki.dll

This example unregisters a library associated with a malware.

Why does a library DLL file need to be registered on a computer?

A Dynamic Linked Library (DLL) is a compiled collection of small programs, routines, etc. that are not immediately tied to an executable. A library sits still in the system and is used only when a program that calls it executes. Before the "calling" program starts, the library does not do anything.

Because libraries can be shared among programs, the Windows operating system manages libraries.

What does a Dynamic Link Library (DLL) do and why do we need it?

You can find more details about a Dynamic Link Library (DLL) at the following link: What is Dynamic Link Library (DLL)?

Regsvr32 syntax

Regsvr32 is used to register or unregister a Dynamic Link Library (DLL) and the following is its syntax.

REGSVR32 [/U] [/S] [/C] [/I:[Command_Line]] DLL_Name

/U          Unregister Server

.

Discuss this article or this topic in our discussion forum:
(The table bellow shows a list of 8 most recent topics posted in our discussion forum. Visit our discussion forum to see more. It is possible the links below are not related to this page, but you can be certain you will find related posts in the discussion forum. You can post one yourself too.)
Email this article to a friend:
TO: 
FROM: 
2 + 6 - 3 = 
.
How can I link to this web page?

It is easy, just include the code provided below into your HTML code.

<a href="http://www.maxi-pedia.com/unregister+library+DLL" title="www.Maxi-Pedia.com: Unregister library DLL" target="_blank">Unregister library DLL</a>
.