user830054
user830054

Reputation: 309

InstallShield - How to install redist from setup ini command

I have an installshield project is it possible to install redistributable packages after the main install process ends?

I can't modify the package so I would run the installer from setup.ini

Upvotes: 0

Views: 1461

Answers (2)

Christopher Painter
Christopher Painter

Reputation: 55601

Setup.ini isn't designed to support injecting additional instals. You'd have to write another wrapper install that could chain this install and your other install together.

Upvotes: 0

Cosmin
Cosmin

Reputation: 21416

A solution would be to use a custom action which launches the prerequisites asynchronously and doesn't wait for them to finish.

But if you can't modify the package, the only solution I can think of is a BAT file. This BAT can first execute the package and then the prerequisites.

Upvotes: 1

Related Questions