简体   繁体   中英

How can I tell if a VSTO Add-in is loaded?

I'm working on a VSTO add-in for Outlook that, if another custom VSTO is loaded, will perform a specific action. How would I determine if that VSTO is loaded? I've not delved too far into COM as of yet other than writing a number of add-ins.

You can check the key:

"HKLM\\Software\\Microsoft\\Office\\Outlook\\Addins[YourAddInName]"

in the registry.

Existence of the key means that the AddIn is installed. You can also read the value LoadBehaviour under the above key, the value 3 means that the addin is loaded/to be loaded normally. The value 2 means that the addin has problems.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM