Hi
I have an Office 2007 add-in (developed using Visual Studio 2005 Tools for Office Second Edition) which has been packaged into an .msi file, using the Setup project in Visual Studio 2005
The problem is that when the users install the package themselves by using Next->Next->Finish then everything works normally, but when I try to install it using the domain administrator silently on all machines (In this case we have hundreds of users) then it doesn't work properly (although it installs normally) Following is the command used to install the .msi package silently
msiexec /fa "solution.msi" ALLUSERS=1 /qb!
This image shows how the system registry is populated at install time to connect our solution to Office2007
Could there be any previous versions of the solution that might be conflicting with our silent install ? or might there be another problem ?
Could there be any problems relating to CASPOL security which could be failing when I install this silently ?