I'm looking to create a utility which searches for Office add-ins.
I've located some add-ins I have in my registry, so I think that would be a good place to start, but I couldn't just add the code to find my add-ins as there are hundreds more in the world, I'm stuck trying to find a way to search through the registry, therefore any advice would be much appreciated.
What I have found:
Office add-ins are located in HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office
so I'm wanting to iterate through that key, to return the values of the Manifest Location, Load Behavior, Description etc.
I'd like some help to point me in the right direction, If I haven't made myself clear enough please comment and I will happily answer your question.
Registry.GetValue
orRegistryKey.GetValue
Method to retrieve registry information. Take a look on MSDN: msdn.microsoft.com/en-us/library/… | msdn.microsoft.com/en-us/library/xzxd58z1.aspx - varg