Search Results for

    Show / Hide Table of Contents

    processes

    In this element you can configure exclusions to the default close method, which is defined in the closeConfiguration. For Microsoft Word for example it is better to close the process with "closeAllWindow" because with this method Word is asking the user to save unsaved documents before closing.

    Parent Element: OpenProcessHandler Configuration

    Example

    <processes> 
        <process name="iexplore.exe" closeMethod="closeAllWindow" /> 
        <process name="firefox.exe" closeMethod="closeAllWindow" /> 
        <process name="chrome.exe" closeMethod="closeAllWindow" /> 
        <process name="winword.exe" closeMethod="closeAllWindow" /> 
        <process name="excel.exe" closeMethod="closeMainWindow" /> 
        <process name="powerpnt.exe" closeMethod="closeAllWindow" /> 
        <process name="outlook.exe" closeMethod="closeMainWindow" /> 
        <process name="visio.exe" closeMethod="closeMainWindow" /> 
        <process name="devenv.exe" closeMethod="closeMainWindow" /> 
    </processes>
    

    Elements

    process

    Attribute Type Description Required Version
    name string Name of the process to which this special close method should be applied. X ≥1.9.0
    closeMethod string This is the method which should be used to close this process. Possible values are: kill closeMainWindow closeAllWindow These values are explained here. X ≥1.9.0
    Back to top