I inherited a Basic MSI InstallShield ISM to install an application that has a mixture of .Net and COM dll's. The existing ISM currently uses a number of custom dialogs to run the setup workflow.

A new requirement we have is support for response files for silent installation. From what I understand this isn't possible with Basic MSI.

One option I've considered is to convert this to Install Script and re-build the installer UI. I'm exploring the difficulty of that now. Is this a good approach?

What other options are available?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Instead of a response file why not use a response transform. The MSI UI settings usually translate to some properties being set to a certain value. You can add those properties to a transform and use it during the silent installation for configuration.

Here you can find an example. It is not exactly what you need, but it is a starting point:

link|improve this answer
I am finding that the custom actions in the project are causing failures; even when I provide the parameters either via command line or via a response transform. – JB. Jan 18 at 20:58
Create an install log to isolate the custom action that fails. stackoverflow.com/questions/7126077/create-an-msi-log-file – Ciprian Jan 19 at 6:31
ok - i had been looking at the default logs, though they're not the easiest things to understand. i'll try a verbose log. thanks. – JB. Jan 19 at 13:54
feedback

Response files is the technique associated with InstallScript projects. It has no place in an MSI silent installation story. The MSI equivilant of a response file is an advertised installation and then run the installer from the advertisement. But that's seldom used in the real world.

link|improve this answer
sounds like the requirement for response files is prescriptive. i suppose what we're trying to get at is a silent installation that can follow some setup configuration so that a central IT user can push out an installation to many users that may not be the vanilla "just hit next" installation. – JB. Jan 17 at 19:01
@JB MSIs are usually used by IT to push the installs, it could be done through Group Policy, Active Directory. If one needs to customize the installation, it is possible to set properties on the command line when starting silent installation or to apply a transform to set these properties. This is an advantage of MSI: it can be customized in a standard way. – Alexey Ivanov Jan 18 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.