Milestone XProtect Smart Client 2013 User Manual
Page 166

Milestone XProtect
®
Smart Client
2014
User's Manual
www.milestonesys.com
166
Scripting
ServerAddress
Refers to the URL of the server to which the XProtect Smart Client connects (if connecting to an
XProtect Corporate system, this is the URL of the Management Server; if connecting to an XProtect
Enterprise, an XProtect Professional, an XProtect Express, or an XProtect Essential system, it is the
URL of the Image Server).
The following example shows the XProtect Smart Client's login window with http://ourserver in the
Server address field:
Client.exe -ServerAddress="http://ourserver"
The XProtect Smart Client's default authentication type is Windows authentication (current user).
Unless you change this, using the AuthenticationType parameter (described in the following section),
the login window automatically displays the current Windows user in the User name field.
UserName
Refers to a specific user name.
The following example shows the XProtect Smart Client's login window with http://ourserver in the
Server address field, and Tommy in the User name field:
Client.exe -ServerAddress="http://ourserver" -UserName "Tommy"
This parameter is relevant only for Windows authentication and Basic authentication. You use the
AuthenticationType parameter to control which authentication method to use.
Password
Refers to a specific password.
The following example shows the XProtect Smart Client 's login window with http://ourserver in the
Server address field, Tommy in the User name field, and T0mMy5Pa55w0rD in the Password field:
Client.exe -ServerAddress="http://ourserver" -UserName "Tommy" -
Password "T0mMy5Pa55w0rD"
This parameter is relevant only for Windows authentication and Basic authentication. You use the
AuthenticationType parameter to control which authentication method to use.
AuthenticationType
Refers to one of XProtect Smart Client 's three possible authentication methods: Windows
authentication (current user) (called WindowsDefault in startup scripts), Windows authentication
(called Windows in startup scripts), or Basic authentication (called Simple in the startup scripts).
The following example shows the XProtect Smart Client login window with http://ourserver in the
Server address field, Basic authentication selected in the Authentication field, Tommy in the User
name field, and T0mMy5Pa55w0rD (masked by asterisks) in the Password field:
Client.exe -ServerAddress="http://ourserver" -UserName "Tommy" -
Password "T0mMy5Pa55w0rD" -AuthenticationType Simple
If you use Windows authentication, the example is:
Client.exe -ServerAddress="http://ourserver" -UserName "Tommy" -
Password "T0mMy5Pa55w0rD" -AuthenticationType Windows