Search Results for

    Show / Hide Table of Contents

    XML Syntax OpenProcessHandler.exe.config

    In the OpenProcessHandler.exe.config you can define global settings like how the processes should get closed.

    Example

    <closeConfiguration defaultCloseMethod="kill">
        <!--valid values for closeMethod: kill, closeMainWindow, closeAllWindow--> 
        <processes>...</processes> 
          </closeConfiguration> 
    <applicationConfiguration icon="" />
    

    Elements

    closeConfiguration

    Attribute Type Description Required Version
    defaultCloseMethod string This is the method which should be used to close process which are not defined in the processes list. Possible values are: kill closeMainWindow closeAllWindow. X ≥1.9.0

    applicationConfiguration

    Attribute Type Description Required Version
    icon string If this value is an empty string the Netree icon is displayed in the Open Process Handler Windows. You can set your own company logo by setting the path to your custom ico, gif, png or jpg. X ≥1.9.0

    Other Elements

    Element Description Required Version
    processes Defines preconditions for specified install task. which should not be closed with the default close method. X ≥1.9.0
    Back to top