How to automate the steps in the Installshield Wizard?

4

I was working on a project where I need to take latest builds(packaged as installers) and run it in the machine in order to test it. I wanted to just automate that installshield wizard (viz. next->next->next->Agree->Insall->Exit)

Can anybody please tell me if there is some tool/way to do it ?

P.S. : I dont want to take the build from the repository and deploy it. I want to do it via installer only.

Necromancer

Posted 2017-04-21T10:08:39.007

Reputation: 41

Answers

3

According to the excellent unattended sourceforge page in many but not all cases, all you need to do is run the installer with a /r flag. This generates a unattended.iss file in c:/windows which you can copy out to the same folder. You can then run it with /s to use the script file to pick up on your choices.

Journeyman Geek

Posted 2017-04-21T10:08:39.007

Reputation: 119 122