Browse Source

Add ISPP command line parameter to enable/disable ISPP installation from the command line. To be used by QuickStart Pack.

Martijn Laan 12 years ago
parent
commit
38994326db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      setup.iss

+ 1 - 1
setup.iss

@@ -298,7 +298,7 @@ procedure InitializeWizard;
 begin
   CreateCustomPages;
   
-  ISPPCheckBox.Checked := GetPreviousData('ISPP', '1') = '1';
+  ISPPCheckBox.Checked := (GetPreviousData('ISPP', '1') = '1') or (ExpandConstant('{param:ispp|0}') = '1');
 end;
 
 procedure RegisterPreviousData(PreviousDataKey: Integer);