2

I have created an outlook VSTO Addin using visual studio 2012, .net framework 4.5 . It loads correctly,on various machine that I have tested. But on two client machines it is not loading, even though correct registry entry has been created under path.

HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\

Also, the plugin is installed correctly, it shows up in the Add or remove programs.But the addin is not visible even in the inactive or disable list in outlook.The load behavior is still 3 in the registry.So, what could be the cause of the issue?

V K
  • 1,645
  • 3
  • 26
  • 57

1 Answers1

0

There is a nice post on msdn to learn how to debug VSTO addins : see here.

Essentially you can display loading-time error message for your add-in by setting the environment variable (on your customer machine) VSTO_SUPPRESSDISPLAYALERTS to 0. For an example see here .

See also this post : How to troubleshoot a VSTO addin that does not load?

Community
  • 1
  • 1
Malick
  • 6,252
  • 2
  • 46
  • 59