### DocuWare Platform Service Example Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?docu_auftrag_bearbeiten.html= Example of a search and indexing string format for DocuWare Platform Service, using field names and values separated by commas. ```text feldname1,rechnung1,feldname2,rechnung2,feldname3,rechnung3 ``` -------------------------------- ### DocuWare GAPI Example Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?docu_auftrag_bearbeiten.html= Example of a search and indexing string format for DocuWare GAPI, using field numbers and values separated by commas. ```text 20,rechnung1,30,rechnung2,40,rechnung3 ``` -------------------------------- ### Configuration JSON Example Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?tech_fulltext-db-to-elasticsearch.html= Example of the Configuration.json file used to configure the FulltextImporterDbToElasticsearch tool. Ensure all values up to 'archiveTable' are copied from config.php, and 'archiveTable' is set to the correct archive table name. ```json { "host": "jobrouter_dbhost", "port": "", "schema": "jobrouter_test", "type": 0, "username": "admin", "password": ":V/7yf2cL7U/z7W/ExampleZ0eNg==", "archiveTable": "TESTARCHIV" } ``` -------------------------------- ### Configure Step Open Logging Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?tech_performanceanalyse_zeiterfassung.html= Log the opening of user steps by defining process names and optional step numbers in the 'step.open' configuration. Each entry is an array, where the first element is the process name and the second (optional) is an array of step numbers. ```php 'step' => [ 'open' => [ ['MyTestProcess', [1, 4]], ['MyOtherTestProcess'], ], ] ``` -------------------------------- ### Search String Example with Escaped Comma Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?docu_auftrag_bearbeiten.html= Example of a search string with a value containing a comma, which is escaped using a preceding backslash. ```text 20,Müller\,Hans,96,100.100 ``` -------------------------------- ### Install and Import ExchangeOnlineManagement Module Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?admin_jobmail_microsoft_entraid.html= Installs the ExchangeOnlineManagement module and imports it into the current PowerShell session. This module is necessary for managing Exchange Online. ```powershell Install-Module -Name ExchangeOnlineManagement Import-Module ExchangeOnlineManagement ``` -------------------------------- ### Standard Configuration (Old Structure, MSSQL) Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?tech_konfigurationsdatei.html= Example of the configuration file using the old structure with constants for MSSQL Server. This structure is supported but a migration to the array syntax is recommended. ```php [ 'help' => 'https://jobrouter/help/html' ], ]; ``` -------------------------------- ### Search String Example with Range Search Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?docu_auftrag_bearbeiten.html= Example of a search string using range search for numeric or date values, specifying the lowest and highest values separated by a comma. ```text 96,100,96,150 ``` -------------------------------- ### Path Configuration for Cache Directory Source: https://docs.jobrouter.com/2026.1/de/administrator/_hm_print_window.htm?tech_konfigurationsdatei.html= Example of setting the 'path' configuration, specifically defining the absolute path for the cache directory. Ensure general optimizations are considered when selecting the cache directory. ```php [ // ... ], 'path' => [ 'cache' => 'C:\\jobrouter\\external-jobrouter-cache' ], ]; ```