Statistica V14.1 Silent Install Script Examples
book
Article ID: KB0070768
calendar_today
Updated On:
Description
Silent install scripts for all the 14.1 installation types. Attached is a
Issue/Introduction
Attached to this knowledge base article is a zip file which has example silent install scripts for 14.1.
Resolution
1. Download the attached file at the bottom of this article. Click to download or right-click and select "Save As..."
2. Right-click and select "Extract All..." to extract the files
3. Right-click on the script that matches your installation and select Edit. Read the instructions in the ReadMe and also the batch file carefully and add your information
4. Save the changes (File-->Save)
5. Right-click on the batch file and select "Run as administrator"
The installer should begin and complete. If the silent flag is added, as in bold below, there will be no user interface
Example server batch file, below:
REM Any variables set as "" are not included in the run command, as empty string variables don't work in the final command.
REM If you want to use these variables, give them a value and add them to the run command at the bottom (but they have to be added before the "SILENT_INSTALL_FLAG" property)
REM Path to the installer executable
SET SetupPath="%~dp0Statistica.exe"
REM Installation Keys
SET SerialNumber="Serial Number provided to you"
SET ProductKey="Product Key provided to you"
REM SET InstallCode="" <only used if provided with an Install Code>, otherwise leave as a remark>
REM WebStatitica Settings
REM Leave WebStatHostName undefined to use the machine name.
REM SET WebStatHostName=""
SET WebStatPort="8081"
REM Enterprise Settings
REM "0" to connect to an existing Statistica Enterprise database. "1" to create a new Statistica Enterprise database from an empty SQL/Oracle database.
SET BNewDB="0"
SET DB_CONNECTION_STRING="Driver={SQL Server};Server=<Fully Qualified Domain Name>;PORT=;Uid=STATISTICA;Pwd=<password>;database=<Statistica database name>"
REM Installer log file
SET Log="%~dp0log.txt"
REM Set value to "/qn" (without quotes) to make silent
REM Must be the last property in the command
SET SILENT_INSTALL_FLAG=/qn
REM For testing/debugging only.
SET B_DEBUG_MODE=0
%SetupPath% SERIALNUMBER=%SerialNumber% PRODUCTKEY=%ProductKey% WEBSTATPORT=%WebStatPort% B_NEW_DATABASE=%BNewDB% DB_CONNECTION_STRING=%DB_CONNECTION_STRING% B_DEBUG_MODE=%B_DEBUG_MODE% /L*VX %Log% %SILENT_INSTALL_FLAG%
Example workstation batch script:
REM Share the Workstation Installer folder on the Statistica server (Read Only)
"\\<replace with server name where Statistica folder is shared>\Workstation Installer\Statistica.exe" /qn
Attachments
Statistica V14.1 Silent Install Script Examples
get_app
Feedback
thumb_up
Yes
thumb_down
No