How can i determine which of my product's .net assemblies are registered, when i have several on my pc?

StackOverflow https://stackoverflow.com/questions/451480

  •  19-08-2019
  •  | 
  •  

Question

I have the code for various versions of a software product I work on on my machine. The product includes one or more assemblies that are registered for com interop. How can I determine which one is currently registered?

Was it helpful?

Solution

If you know the GUID of your assembly, look under HKCR\CLSID\{your guid}\InprocServer32. The Assembly key will have a value including the version.

If you only have the ProgId, you can just search the registry for that string which will tell you the GUID.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top