Search Results for

    Show / Hide Table of Contents

    vbsProcess

    This element defines default settings for the process type vbs. Parent Element: processSettings

    Example

    <vbsProcess> 
        <program fileName="cscript.exe" runInHiddenMode="True" /> 
        <successExitCodes> 
          <exitCode value="0" /> 
        </successExitCodes> 
    </vbsProcess>
    

    Elements

    program

    Attribute Type Description Required Version
    fileName string This file is executed, when this processType is used. X ≥1.0.0
    runInHiddenMode boolean Defines if the process is running in hidden mode or not. By default, the hidden mode is true. ≥1.0.0

    Other Elements

    Element Description Required Version
    successExitCodes Defines a list of valid global exit codes for the specified process. Sucess exitcodes can also be defined in every package in the LauncherConfig.xml. ≥1.0.0
    Back to top