views:

163

answers:

2

This is driving me nuts.

I registered a dll (COM) using

regsvr32 blabla.dll

In the meantime I deleted this dll manualy from disk.

How can I unregister this dll? I know CLSID.

Edit:

Apparently I need to delete this from registry

What should I delete in the registry?

+2  A: 

The unregistration code lives in the DLL, unfortunately, so regsvr32 /u blabla.dll won't work; you'll need to manually delete the DLL's information from the Windows registry using regedit. I believe that the registration information is typically located in HKEY_CLASSES_ROOT\CLSID\{YOUR-CLSID}.

Emerick Rogul
where in regisry?
Kugel
Typically under HKEY_CLASSES_ROOT\CLSID. I updated my answer with this information.
Emerick Rogul
A: 

You may need to delete the prog.id either located in HKEY_CLASSES_ROOT too.

Emmanuel Caradec