Hi Arnau,
In order to skip the launch condition you can go in the
Install Parameters page and
create your own
public property.
You can have something like that:
Name: field
SKIP_PREREQ_CHECK
Value: field
No
Then you can go in the
Table Editor page and in the
LaunchCondition table and add in each
system launch condition which you have defined before add the
OR operator with the previous property
SKIP_PREREQ_CHECK.
Let's suppose you don't want that your installation package to run on machines where the
Minimum Physical Memory is less than 2048 MB.
Then in the
launchCondition table you will have the following condition:
Code: Select all
PhysicalMemory >= AI_MINRAM OR SKIP_PREREQ_CHECK = "Yes"
So your installation package will be installed on a machine which doesn't fulfill the minimum system requirement only if the previos defined property will be set to
Yes value.
In order to launch your installation package from the command line, you can use the following statement:
Setup.exe SKIP_PREREQ_CHECK="Yes"
Please let us know if that helped, otherwise give us more details.
Best regards,
Dan