UI options defined in your <drm-name>_options.xml file. For example: -os Windows -numcores 4 . For example, in the following property (option) definition in a DRM options file: <!-- Integer input field with default value: Cores -->
<Property id="2" name="-numcores" required="true" type="integer" ReadOnlyFlag="false">
<DisplayName nlsID="input.Title" nlsFile="CustomDRM">Cores</DisplayName>
<Value>1</Value>
<Description>Number of cores to utilize</Description>
</Property> The name="-numcores" attribute of the <Property> element defines the exact command-line argument and the <Value>1</Value> element defines the value associated with that argument. So for this example, the corresponding option to pass to your submit script is: -numcores 1 |