0

I have two product Configuration releases for my MSI, namely Release1 & Release2. I have added a checkbox to the ReadyToInstall Dialog. I want this checkbox to be visible only when I build Release2. Running an Installer from Release1 should display the usual ReaddyToInstall Dialog Box without showing any CheckBox.

How can I achieve this?

The King
  • 833
  • 1
  • 15
  • 41

1 Answers1

0

I would approach this by adding a release flag to your releases and a condition (see the Conditions tab in the lower right when you're on the dialog's Behavior node) to hide or show the checkbox if ISReleaseFlags does or does not contain the appropriate flags. You can check contains with the >< operator, per Conditional Statement Syntax.

Michael Urman
  • 15,737
  • 2
  • 28
  • 44