Search Results for

    Show / Hide Table of Contents

    conditions

    Defines preconditions for specified task.

    Parent Element: installTask or uninstallTask

    Example

    <conditions>
        <condition type="Process" resource="abc.exe" allowed="false" />
        <condition type="Process" resource="xyz.exe" allowed="false" />
    </conditions>
    

    Elements

    <condition>
    

    Element Attributes

    Attribute Type Description Required Version
    type string condition type (only process available at the moment) X ≥1.0.0
    resource string Process name X ≥1.0.0
    allowed boolean Defines, if the specified process is allowed or not X ≥1.0.0

    Application Handling

    The conditions get used by netECM:Launcher in the Open Process Handler and Application Execution Handler.

    Back to top