简体   繁体   中英

Installing several applications at once from Inno Setup

I'm pretty new to Inno Setup. I created a fairly simple installer (and it wasn't hard at all), that consisted of one application. I wanted to know if Inno Setup is a suitable choice for creating an installer, that would consist of several applications, that have their own installers (as far as I understand, these installers could be run from Inno Setup). And is there an option (probably related to writing some Delphi code), that would let user choosing what apps need to be installed (with checkboxes or something like that). I understand that it's not really a concrete question (though a code sample or a full answer would be appreciated), I just don't want to spend too much time setting this tool (though I liked Inno Setup), if it doesn't meet my needs.

An Inno Setup can include other setups and extract/run them on any condition, including dependancies (not) existing, user prompts and [Components] / [Tasks] .

You can use a normal [Files] entry to extract it into {tmp} and a [Run] entry to run it.

If the other setups are external to the Inno setup, skip the [Files] entry and use {src}\\BlahSetup.exe for the [Run] entry.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM