tags:

views:

395

answers:

2

How to check if COM component(exe/dll) is registered or not using .NET?

+1  A: 

Just make a lookup in the registry. HKEY_CLASSES_ROOT\yourcom.component.

Arthur
A: 

See How to check if a dll is registered

SwDevMan81