Autorun for Eocortex Client and Eocortex Standalone🔗

Below are the examples of autorun settings that do not explicitly require a username and password to be entered in the authorization window:

  • The Eocortex Client application autostart at computer startup.

  • The Eocortex Standalone view window autostart at computer startup.

  • Automatic login to the Eocortex Client application from a shortcut on the desktop.

  • Automatic login to the Eocortex Standalone view window from a shortcut on the desktop.

Parameters

As an example, the following values are taken for the required parameters:

  • The Eocortex Client installation folder:

    C:\Users\UserName\AppData\Local\Programs\Eocortex Client\
    
  • The Eocortex Standalone installation folder:

    C:\Program Files\Eocortex Standalone\
    
  • Server IP address: 192.168.0.100

  • Server connection port: 8081

  • Eocortex username: operator

  • Eocortex user password: qwerty77

  • Windows username: UserName

Warning

Quotes when specifying the full path to the file are required.

Eocortex Client autorun

To configure the Eocortex Client application autorun at computer startup, open the Windows system registry and find the HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run section. Create a new String key with the Eocortex Client name and the value:

"C:\Users\UserName\AppData\Local\Programs\Eocortex Client\EocortexClient.exe" -server 192.168.0.100 -port 8081 -user operator -password qwerty77

To configure automatic login to the Eocortex Client application using a desktop shortcut, right-click the shortcut and select the Properties item from the context menu. In the window that opens, set to the Object field on the Shortcut tab the line as shown below:

"C:\Users\UserName\AppData\Local\Programs\Eocortex Client\EocortexClient.exe" -server 192.168.0.100 -port 8081 -user operator -password qwerty77
Eocortex Standalone autorun

To configure the Eocortex Standalone view window autorun at computer startup, open the Windows system registry and find the HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run section. Create a new String key with the Eocortex Standalone name and the value:

"C:\Program Files\Eocortex Standalone\Eocortex.exe" -server 192.168.0.100 -port 8081 -user operator -password qwerty77

To configure automatic login to the Eocortex Standalone view window using a desktop shortcut, right-click the shortcut and select the Properties item from the context menu. In the window that opens, set to the Object field on the Shortcut tab the line as shown below:

"C:\Program Files\Eocortex Standalone\Eocortex.exe" -server 192.168.0.100 -port 8081 -user operator -password qwerty77
Specific features
  • To establish a secure connection, the following parameters need to be used: -sslport and -connectionprotocol.

    The -sslport parameter replaces the -port parameter and requires the explicit indication of the port number, even if the default value of 18080 is being used.

    The -connectionprotocol parameter is used with a value of 1 to establish an HTTPS connection. The placement of this parameter is irrelevant.

  • To disable validation of security certificates in use, add the -disablesslcertificatesvalidation parameter.

  • To automatically start and log on to applications using Active Directory pass-through authorization, use the -usertype parameter with the integratedwindowsauth type. You do not need to specify the -user and -password parameters — the credentials of the current Windows user will be used for authorization. The Eocortex Client application must be logged in to the operating system of the computer running the Eocortex Client application under a domain user account.

    Examples

    "C:\Program Files\Eocortex Standalone\Eocortex.exe" -server 192.168.0.100 -port 8081 -usertype integratedwindowsauth
    
    "C:\Users\UserName\AppData\Local\Programs\Eocortex Client\EocortexClient.exe" -server 192.168.0.100 -sslport 443 -connectionprotocol 1 -user operator -password qwerty77
    

    Warning

    When using Active Directory pass-through authorization, Eocortex Server and Eocortex Standalone must also be launched using the domain user account.