2
votes

if i want to install a MSI, created by Visual Studio 2005, via Active Directory Group Policy:

What requirements must be met by the Setup Project? How can I specify the installation path? Is this a part of the Group Policy setting? Or do I have to create a special "silent install" version of the MSI?

Thanks!

2

2 Answers

2
votes

I found out that it is possible to specify the installation path with a custom property called "TARGETDIR". The unattended installation can be tested with:

setup.msi /passive TARGETDIR="C:\whatever"
1
votes

There is a command MSIExec that installs MSI installers automatically. This command is what you would use with the Policy. Any MSI should be compatible with it.

You have a number of options for building installers going with Microsofts default setup projects or something more verbose like Wix.