registering and unregistering .NET dlls

G

Guest

Hi all
I am using RegAsm.exe to register .NET assemblies like
this:
regasm D:\...\...\MyDLL.dll /tlb:d:\mybin\MyDLL.tlb

for unregistering:
regasm
D:\...\...\MyDLL.dll /tlb:d:\mybin\MyDLL.tlb /unregister

after unregistering, I thought the keys and values that
were originally added to the registry from registering
would have gone away. But I notice that the keys are
still there in the registry.

How can I be sure that my dll got successfully
unregistered? (I noticed that after unregistering, my app
stopped working which is the expected correct behavior)

Thanks for all your help.
 
R

Robert Jordan

Hi,
I am using RegAsm.exe to register .NET assemblies like
this:
regasm D:\...\...\MyDLL.dll /tlb:d:\mybin\MyDLL.tlb

for unregistering:
regasm
D:\...\...\MyDLL.dll /tlb:d:\mybin\MyDLL.tlb /unregister

regasm D:\...\...\MyDLL.dll /unregister

bye
Rob
 

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