views:

17

answers:

0

I Have a shared add in (not VSTO) which I need to deploy via group policy to all users on the target machines.

My addin (targeting outlook specifically) accepts a command line switch which is the path of an intranet application so it can communicate with it - this all works fine on my development machine and also on a different machine if I install manually like this :

myaddin.msi PATH="http://serverxyz/intranetapp"

as expected, the toolbar appears in outlook for the logged on user.

The problem I have is that if I log in as a different user on the same machine the addin does not load at all.

Am I correct in assuming that this behaviour is caused by installing via the MSI file rather than the setup.exe file created by the setup project? even if I pass the ALLUSERS=1 parameter to my MSI file it still fails to show up??

Any help would be much appreciated!