81 lines
6.1 KiB
INI
81 lines
6.1 KiB
INI
####################################################################################################
|
|
# Digital Data Configuration File (Template Date: 30.07.2016) #
|
|
# UTF-8 Coding required! #
|
|
# incl. FailSafe functions that are active when information is missing. #
|
|
####################################################################################################
|
|
|
|
#==================================================================================================#
|
|
########################################## General Setup ###########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Path in which the log files will be stored. #
|
|
# Example: E:\LogFiles\<ScriptName> #
|
|
# FailSafe Setting is: <ScriptPath> #
|
|
####################################################################################################
|
|
LogPath =
|
|
|
|
####################################################################################################
|
|
# Numerical value how long (in days) log files will be kept. ValidateRange is 0 - 1000 #
|
|
# Value of 0 disables the delete function completely. #
|
|
# FailSafe Setting is: 60 #
|
|
####################################################################################################
|
|
LogFileKeepTime = 3
|
|
|
|
####################################################################################################
|
|
# Set the User Interface Language. Please check for existing .psd1 File in the Localized Subfolder.#
|
|
# If you did not set this Option, Script will retrive the current Language itself. #
|
|
# Example: de-de #
|
|
# FailSafe Setting is: en-us #
|
|
####################################################################################################
|
|
UICultureForce =
|
|
|
|
#==================================================================================================#
|
|
####################################### connection settings ########################################
|
|
#==================================================================================================#
|
|
|
|
####################################################################################################
|
|
# Set the Host IP you want to Test (ping) for a connection, if Test fails Program will try to #
|
|
# establish a connection. #
|
|
# Example: 192.168.0.1 #
|
|
####################################################################################################
|
|
PingTarget = 192.168.70.12
|
|
|
|
####################################################################################################
|
|
# Set connection App which should be started, if previous Test fails. #
|
|
# Example: D:\ProgramFiles\OpenVPN\bin\openvpn-gui.exe #
|
|
####################################################################################################
|
|
ConnectionApp01 = D:\Programme\DFUE\OpenVPN 2.3.3\bin\openvpn-gui.exe
|
|
|
|
####################################################################################################
|
|
# Set Parameter call the ConnectionApp01, if needed. #
|
|
# Example: --config_dir "D:\ProgramFiles\OpenVPN\config" --connect VPN_Profile-config.ovpn #
|
|
####################################################################################################
|
|
ConnectionParameter01 = --config_dir "D:\Programme\DFUE\OpenVPN 2.3.3\config" --connect mt-vmx01-com01-udp-1194-VPN_RB2-config.ovpn
|
|
|
|
####################################################################################################
|
|
# Set the logon Domain, if ConnectionApp01 needs to run with higher or other permissions. #
|
|
# By leaving this blank, local ComputerName will be used as Domain. #
|
|
# Example: YourWindowsDomain.local #
|
|
####################################################################################################
|
|
LocalDomain =
|
|
|
|
####################################################################################################
|
|
# Set the logon UserName, if ConnectionApp01 needs to run with higher or other permissions. #
|
|
# Example: Administrator #
|
|
####################################################################################################
|
|
LocalUserName = Administrator
|
|
|
|
####################################################################################################
|
|
# Set the logon User Password, if ConnectionApp01 needs to run with higher or other permissions. #
|
|
# Example: Administrator #
|
|
####################################################################################################
|
|
LocalUserPassword =
|
|
|
|
####################################################################################################
|
|
# Set a final Batch Script, which should be executed after ConnectionApp01 was started #
|
|
# and a second connection Test to the PingTarget succeeded. #
|
|
# Example: D:\ScriptFiles\netlogon\LOGIN_SCRIPT.bat #
|
|
####################################################################################################
|
|
StartCMDFile01 = D:\ScriptFiles\netlogon\LOGIN_SCRIPT.bat
|