File Properties

The Conditions tab is used to conditionally include/exclude a file from the setup at build time or run time.

Build Configurations

 

The build configurations that will include the current file. You can check or uncheck the boxes in the build configurations tree. This feature can be used to prevent a file from being built into the setup.

Operating Systems

 

The operating systems that the file will be installed under. Some operating systems also allow you to select specific service release options. The main operating system categories are listed below:

Script Conditions

 

A custom condition written in Lua script for the file. The script you enter must evaluate to a boolean value of true or false. At runtime this result will determine whether or not the file will be installed.

Some examples of valid conditions are:

my_variable > 10

This means if the numeric value of the variable "my_variable" is greater than 10, install the file. If the value is less than 10, do not install the file.

my_variable == "Custom"

This means if the string value of the varibale "my_variable" equals the string "Custom", install the file. If the strings are not equal, do not install the file.