unregister a custom dll from a workstation?

G

Guest

I created a custom dll to use .net objects in com environment. It works
fine. Then I copied the dll to another workstation and manually registered
it, and it works fine there also. Now I need to unregister this dll on that
workstation so I can test if Click Once deployment will deploy the dll with a
com app I am deploying.

How to unregister this dll from that workstation?

Thanks,
Rich
 
G

Guest

Thanks for the reply to my post. Yes, I did have a problem unregistering my
..Net dll. I have to use Regasm. Thanks for the link. I actually tried that
from

C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe /U mycustomdll.dll

this did not work - said - couldn't find the assembly.

But here is the line I used to register my dll

C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe mycustomdll.dll
/tlb:mycustomdll.tlb /codebase /nologo /silent

I will try this whole line with /u tommorrow. Hopefully that will
unregister it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top