Justin CI
Justin CI

Reputation: 2741

How to make a custom installer in install shield 2015

I need a super installer to be created from InstallShield.

Following are my requirements: The super installer will have the option to install multiple applications (For example: A, B and C). If user selects only A and B, then A and B application must be installed. How can I achieve this with Install Shield

I tried Adding setup files as prerequisites it's not working.

I am trying to achieve a installer like

enter image description here

Upvotes: 1

Views: 250

Answers (2)

Stein Åsmul
Stein Åsmul

Reputation: 42126

I don't have Installshield available to test, but if you have the more expensive versions of Installshield you can create "Suite Projects" which are bundles of different types of installers run in sequence with various forms of logic available to control the installation process. I am not too familiar with it all, but check out the linked help content.

Look for Suite projects in the File => New Projects dialog - or equivalent. As I said, I don't have the tool available to check the exact details.

Upvotes: 1

DeanOC
DeanOC

Reputation: 7262

Taken from this article

For each optional component, you must create a corresponding feature for it, then assign the component to that feature. You then make each of these features optional. During the installation, the user will be able to select or deselect each optional feature, which will in turn and unbeknownst to him, select or deselect the component(s) that belongs to the feature.

So, each app A, B C would be a component that you assign to its own separate feature which you create, and then the user can select the apps that they want.

Upvotes: 1

Related Questions