Using the different command options, you can customize your Security Center Server silent installation.
Unless stated otherwise, all server installation examples below assume that the server does
not have SQL Server installed.
- If you want to use an existing SQL server, use
SQLSERVER_GROUP=ExistingServer
orSQLSERVER_GROUP=AzureServer
instead. - If the local instance is not named (LOCAL)\SQLEXPRESS or if the instance is not LOCAL,
use
GLOBAL_SERVER
to set the instance name.
The /debuglog and /log folders must exist before
launching the install. If desired, you can omit the /silent
parameter. The
installation graphical user interface appears with fields filled with values from the
parameters.
Typical scenario: A full installation of Genetec™ Server with the Directory and the
clients (Config Tool and Security Desk) are installed in English. The files are installed in
C:\Program Files (x86)\Genetec Security Center x.xx. The log files are
saved to C:\MyLogs. An instance of SQL Server is created called
(LOCAL)\SQLExpress. The data collection policy is set to ON. Setup runs
in silent mode.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Server,Client AGREETOLICENSE=Yes COLLECTPOLICY=On MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=NewServer
A standard installation of Genetec™ Server as the main server, without the clients. The
data collection policy is set to anonymous. Both the installation and the Security Center
applications are in
English.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Server AGREETOLICENSE=Yes COLLECTPOLICY=Anonymous MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=NewServer
Security Desk and Config Tool are installed in English
(default), in silent mode. The log files are saved to
C:\MyLogs.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=ConfigTool,SecurityDesk SERVERADMIN_PASSWORD="SeCret123!" AGREETOLICENSE=Yes
A standard installation of Genetec™ Server as an expansion server, without a SQL
Server. Only the installation path is different. Both the installation and the Security Center
applications use the default language, which is
English.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Server /ISInstallDir="c:\GENETEC_PATH" AGREETOLICENSE=Yes SERVER_TYPE=Expansion MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=None
A standard installation of Genetec™ Server as an expansion
server with an existing SQL Server instance. Only the installation path is different. Both the
installation and the Security Center applications use the default language, which is English.
The expansion server will not use a SQL
Server.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Server /ISInstallDir=”c:\GENETEC_PATH” AGREETOLICENSE=Yes SERVER_TYPE=Expansion GLOBAL_SERVER=(Local)\SQLExpress MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=ExistingServer
A standard installation in French in silent mode, with the data collection policy set
to OFF. Security Center applications will use French (default to installation
language).
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /language:3084 AGREETOLICENSE=Yes SQLSERVER_GROUP=NewServer COLLECTPOLICY=Off MAINSERVER_PASSWORD=ServerPwd-123
A complete installation in Arabic with Client and Server, creating a new SQL Server
instance, in silent
mode.
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Client,Server AGREETOLICENSE=Yes COLLECTPOLICY=On LANGUAGECHOSEN=1025 MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=NewServer
A complete installation in French with Client and Server in silent mode, using an Azure
SQL database. Security Center applications will use French (default to installation
language).
"Security Center Setup.exe" /silent /debuglog"C:\MyLogs\Install.log" /log"C:\MyLogs\" /ISFeatureInstall=Client,Server /language:3084 AGREETOLICENSE=Yes COLLECTPOLICY=On MAINSERVER_PASSWORD=ServerPwd-123 SQLSERVER_GROUP=AzureServer SQLSERVER_AUTHENTICATION=1 GLOBAL_SERVER=MyDbName.database.windows.net SQLSERVER_USERNAME=scdbadmin SQLSERVER_PASSWORD=SeCret123!