Search Results for

    Show / Hide Table of Contents

    XML Syntax Launcher.exe.config

    In the Launcher.exe.config you can define global settings like the default success exit codes for every processTypes and directories for the localcopy feature.

    Example

    <launcherSettings> 
        <licenseKey value="" /> 
        <pathRegistry value="Software\_Custom\Apps"/> 
        <pathLog value="C:\Windows\Logs\SCCM\Apps"/> 
        <pathLocalCopy value="C:\Windows\LauncherCache"/>
        <performHWInv value="true" /> 
        <processSettings> ... </processSettings> 
        <applicationExecutionHandler ... /> 
        <openProcessHandler ... /> 
    </launcherSettings>
    

    Elements

    licenseKey

    Attribute Type Description Required Version
    value string The licence key which you received from us. You can also order a trial key. X ≥1.0.0

    pathRegistry

    Attribute Type Description Required Version
    value string Under this path all applications are registered. This registry keys are used from netECM:Launcher on reruns or can be used from SCCM 2012 as Detection method and for reporting tools. The default path is HKLM\Software_Custom\Apps. X ≥1.0.0

    pathLog

    Attribute Type Description Required Version
    value string In this directory are all log files created from netECM:Launcher and application installations. The default path is C:\Windows\Logs\SCCM\Apps. X ≥1.0.0

    pathLocalCopy

    Attribute Type Description Required Version
    value string In this directory are packages copied which have set the localCopy attribute to true in the XML Syntax LauncherConfig.xml. X ≥1.0.0

    performHWInv

    Attribute Type Description Required Version
    value boolean This setting defines if hardware inventory task of SCCM should be started at the end of an installation or deinstallation. If you are using sccm leave this setting on true otherwise change it to false. X ≥1.0.0

    Other Elements

    Element Description Required Version
    processSettings Defines preconditions for specified install task. ≥1.0.0
    applicationExecutionHandler Enables and disables the application execution handler ≥1.9.0
    openProcessHandler Enables and disables the open application Handling ≥1.9.0
    Back to top