outlook 2003 add-in fails to load

  • Thread starter Thread starter Marc
  • Start date Start date
M

Marc

Wrote a simple addin with VSTO. Runs beautifully on my machine that has VS
2005 and VSTO installed, and on another dev machine also with the VS2005 &
VSTO installed. It won't run at all on any other box. In the advanced
properties of outlook, it mentions a failure trying to load the add-in.
I've installed what I believe were all pre-reqs, including the VSTO
run-time, the .net 2.0 framework, and the interop libraries. Any help at
all is appreciated!
 
problem solved (thanks Ken for pointing me in the right direction). It was
code access security. This command did the trick:

caspol -u -ag All_Code -url C:\<FolderName>\<FolderName>\* FullTrust -n
"<Name>" -d "<Description>"
 
Back
Top