How to use external installer parameters?
April 30, 2008 1:34 PM
Subscribe
I'd like to make a Windows installer customizable via external parameters (e.g. from an installer.ini file).
The compiled installer will be distributed to multiple researchers, who will install the software on all client machines in their respective studies. The current installer sets a default value for the “StudyName” registry key, so the researchers would have to change it on each machine using RegEdit after install. I'd like to allow them to set the value before installing (e.g. by editing a text file) and have it override the default.
I have the existing Inno Setup source script, but I'd be glad to use another (free) installer package if Inno can't do it.
posted by danblaker to computers & internet (11 comments total)
1 user marked this as a favorite
msiexec /i X:\path\to\installer.msi STUDYNAME=YourValue
posted by JaredSeth at 2:13 PM on April 30, 2008