2020-12-01 08:58:09 -06:00
|
|
|
Windows Installer Instructions
|
|
|
|
==============================
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
Silent installation
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
The installer supports silent installation using the standard "msiexec" command from a command prompt.
|
|
|
|
This is done by specifying the /q command line flag
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
As errors are not reported during silent installation, it is a good idea to enable logging when using
|
|
|
|
this option (see below).
|
|
|
|
|
|
|
|
Note that the default installation path will require elevated user rights, so a silent install will
|
2024-01-04 22:28:01 -06:00
|
|
|
either have to be run from an Administrator command promp or the installation will silently fail
|
|
|
|
(but an error will be logged if logging is enabled).
|
2021-05-10 01:05:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
Logging
|
|
|
|
-------
|
|
|
|
|
|
|
|
To get a detailed log of the installation and detailed reports of any errors, logging to file can be
|
|
|
|
enabled by specifying the /l* command line flag
|
|
|
|
|
|
|
|
#### Example
|
2020-12-03 06:21:00 -06:00
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi /l* symphony_install.log```
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
Install parameters
|
|
|
|
------------------
|
|
|
|
|
|
|
|
The following parameters are available to control other aspects of the installation.
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### ALLUSERS
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "1"
|
|
|
|
Install *For all users* (default)
|
|
|
|
* ""
|
|
|
|
Install *Only for me*
|
|
|
|
|
|
|
|
#### Example, install *For all users*
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi ALLUSERS="1"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi
|
|
|
|
|
|
|
|
|
|
|
|
#### Example, install *Only for me*
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi ALLUSERS=""
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
2020-12-08 04:11:05 -06:00
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### APPDIR
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* Full file path for target location to install Symphony to
|
|
|
|
|
|
|
|
The default value differs depending on ALLUSERS setting.
|
|
|
|
|
|
|
|
* %LOCALAPPDATA%\Programs\Symphony\Symphony
|
|
|
|
If installing *Only for me* (ALLUSERS="")
|
|
|
|
* %PROGRAMFILES%\Symphony\Symphony
|
|
|
|
If installing *For all users* (ALLUSERS="1")
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi APPDIR="C:\Program Files\Symphony"
|
2020-12-08 04:11:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-03 06:21:00 -06:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### ALWAYS_ON_TOP
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "DISABLED"
|
|
|
|
Always-on-top disabled (default)
|
|
|
|
* "ENABLED"
|
|
|
|
Always-on-top enabled
|
|
|
|
|
|
|
|
#### Example, install with always-on-top disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi ALWAYS_ON_TOP="DISABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with always-on-top enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi ALWAYS_ON_TOP="ENABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### AUTO_LAUNCH_PATH
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* Full file path for custom auto launch path
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi AUTO_LAUNCH_PATH="C:\Program Files\internet explorer\iexplore.exe"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### AUTO_START
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "ENABLED"
|
|
|
|
Auto start enabled (default)
|
|
|
|
* "DISABLED"
|
|
|
|
Auto start disabled
|
|
|
|
|
|
|
|
#### Example, install with auto start enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi AUTO_START="ENABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with auto start disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi AUTO_START="DISABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### BRING_TO_FRONT
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "DISABLED"
|
|
|
|
Bring-to-front disabled (default)
|
|
|
|
* "ENABLED"
|
|
|
|
Bring-to-front enabled
|
|
|
|
|
|
|
|
#### Example, install with bring-to-front disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi BRING_TO_FRONT="DISABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with bring-to-front enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi BRING_TO_FRONT="ENABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### CUSTOM_TITLE_BAR
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "ENABLED"
|
|
|
|
Custom title bar enabled (default)
|
|
|
|
* "DISABLED"
|
|
|
|
Custom title bar disabled
|
|
|
|
|
|
|
|
#### Example, install with custom title bar enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi CUSTOM_TITLE_BAR="ENABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with custom title bar disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi CUSTOM_TITLE_BAR="DISABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### DEV_TOOLS_ENABLED
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Dev tools enabled (default)
|
|
|
|
* "false"
|
|
|
|
Dev tools disabled
|
|
|
|
|
|
|
|
#### Example, install with dev tools enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi DEV_TOOLS_ENABLED="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with dev tools disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi DEV_TOOLS_ENABLED="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### FULL_SCREEN
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Full screen enabled (default)
|
|
|
|
* "false"
|
|
|
|
Full screen disabled
|
|
|
|
|
|
|
|
#### Example, install with full screen enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi FULL_SCREEN="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with full screen disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi FULL_SCREEN="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-04-21 04:56:58 -05:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### LAUNCH_ON_INSTALL
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Symphony will be launched automatically after installation has completed (default)
|
|
|
|
* "false"
|
|
|
|
Symphony will not be launched after installation has completed
|
|
|
|
|
|
|
|
#### Example, install with launch on install enabled
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi LAUNCH_ON_INSTALL="true"
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with launch on install disabled
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi LAUNCH_ON_INSTALL="false"
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-03 06:21:00 -06:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### LOCATION
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Location enabled (default)
|
|
|
|
* "false"
|
|
|
|
Location disabled
|
|
|
|
|
|
|
|
#### Example, install with location enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi LOCATION="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with location disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi LOCATION="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### MEDIA
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Media enabled (default)
|
|
|
|
* "false"
|
|
|
|
Media disabled
|
|
|
|
|
|
|
|
#### Example, install with media enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MEDIA="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with media disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MEDIA="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### MIDI_SYSEX
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Midi SysEx enabled (default)
|
|
|
|
* "false"
|
|
|
|
Midi SysEx disabled
|
|
|
|
|
|
|
|
#### Example, install with Midi SysEx enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MIDI_SYSEX="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with Midi SysEx disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MIDI_SYSEX="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### MINIMIZE_ON_CLOSE
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "ENABLED"
|
|
|
|
Minimize-on-close enabled (default)
|
|
|
|
* "DISABLED"
|
|
|
|
Minimize-on-close disabled
|
|
|
|
|
|
|
|
#### Example, install with minimize-on-close enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MINIMIZE_ON_CLOSE="ENABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with minimize-on-close disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi MINIMIZE_ON_CLOSE="DISABLED"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### NOTIFICATIONS
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Notifications enabled (default)
|
|
|
|
* "false"
|
|
|
|
Notifications disabled
|
|
|
|
|
|
|
|
#### Example, install with notifications enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi NOTIFICATIONS="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with notifications disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi NOTIFICATIONS="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### OPEN_EXTERNAL
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Open external enabled (default)
|
|
|
|
* "false"
|
|
|
|
Open external disabled
|
|
|
|
|
|
|
|
#### Example, install with open external enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi OPEN_EXTERNAL="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with open external disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi OPEN_EXTERNAL="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### POD_URL
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* Full url to POD
|
|
|
|
(default is "https://my.symphony.com" )
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi POD_URL="https://my.symphony.com"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-01-08 12:00:05 -06:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### CONTEXT_ORIGIN_URL
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* Your actual POD URL and not the SSO URL
|
|
|
|
(default is "" )
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi CONTEXT_ORIGIN_URL="https://my.symphony.com"
|
2021-01-08 12:00:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-03 06:21:00 -06:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### POINTER_LOCK
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Pointer lock enabled (default)
|
|
|
|
* "false"
|
|
|
|
Pointer lock disabled
|
|
|
|
|
|
|
|
#### Example, install with pointer lock enabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi POINTER_LOCK="true"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi /q
|
|
|
|
|
|
|
|
#### Example, install with pointer lock disabled
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi POINTER_LOCK="false"
|
2020-12-03 06:21:00 -06:00
|
|
|
|
|
|
|
|
2021-04-30 01:37:58 -05:00
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### USER_DATA_PATH
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* Full file path for location to store Symphony user data
|
|
|
|
|
|
|
|
The default (if not specified, or if specified as empty string "") is
|
|
|
|
|
|
|
|
%LOCALAPPDATA%\Symphony\
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
2021-05-10 01:05:21 -05:00
|
|
|
msiexec /i Symphony.msi USER_DATA_PATH="z:\userdata\symphony"
|
2021-04-30 01:37:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-06-09 03:41:42 -05:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### OVERRIDE_USER_AGENT
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
2021-08-26 03:26:29 -05:00
|
|
|
User-agent value "Electron/X.X" is replaced with "ElectronSymphony/X.X"
|
2021-06-09 03:41:42 -05:00
|
|
|
* "false"
|
2021-06-09 04:24:22 -05:00
|
|
|
User-agents are not modified (default)
|
2021-06-09 04:01:04 -05:00
|
|
|
|
|
|
|
#### Example, install with user-agent override
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi OVERRIDE_USER_AGENT="true"
|
|
|
|
|
|
|
|
#### Example, install without user-agent override
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi OVERRIDE_USER_AGENT="false"
|
|
|
|
|
|
|
|
or
|
|
|
|
|
2021-10-14 02:11:02 -05:00
|
|
|
msiexec /i Symphony.msi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
### CHROME_FLAGS
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* A single string containing all flags to be passed to chrome
|
|
|
|
(default is "" )
|
|
|
|
|
|
|
|
#### Example
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi CHROME_FLAGS="--debug --debug2 --debug3"
|
|
|
|
|
|
|
|
|
2023-02-08 02:14:17 -06:00
|
|
|
-------------------------------------------------------------------
|
2023-03-09 03:17:52 -06:00
|
|
|
### ENABLE_BROWSER_LOGIN
|
2023-02-08 02:14:17 -06:00
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
2023-03-28 08:10:18 -05:00
|
|
|
SDA will authenticate the user by relying on default browser
|
2023-02-08 02:14:17 -06:00
|
|
|
* "false"
|
|
|
|
SDA will authenticate the user in SDA
|
|
|
|
|
2023-03-28 08:10:18 -05:00
|
|
|
#### Example, install with browser login enabled
|
2023-02-08 02:14:17 -06:00
|
|
|
|
2023-03-09 03:17:52 -06:00
|
|
|
msiexec /i Symphony.msi ENABLE_BROWSER_LOGIN="true"
|
2023-02-08 02:14:17 -06:00
|
|
|
|
2023-03-28 08:10:18 -05:00
|
|
|
#### Example, install without browser login enabled
|
2023-02-08 02:14:17 -06:00
|
|
|
|
2023-03-09 03:17:52 -06:00
|
|
|
msiexec /i Symphony.msi ENABLE_BROWSER_LOGIN="false"
|
2023-02-08 02:14:17 -06:00
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2023-03-28 08:10:18 -05:00
|
|
|
### BROWSER_LOGIN_AUTOCONNECT
|
|
|
|
|
|
|
|
Acts in combination with ENABLE_BROWSER_LOGIN, if ENABLE_BROWSER_LOGIN is set to true.
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
SDA will automatically authenticate the user by relying on default browser
|
|
|
|
* "false"
|
|
|
|
User will need to click on Login button to start browser login flow.
|
|
|
|
|
2023-07-12 04:39:33 -05:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### FORCE_AUTO_UPDATE
|
|
|
|
|
|
|
|
The provided property will enable user ability to overwrite PMP settings of auto update. Thus,
|
|
|
|
the update option will take "FORCE_AUTO_UPDATE" first then consider PMP later
|
|
|
|
By default its value will be 'false'
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Allow user to check for update regardless conditions
|
|
|
|
* "false"
|
|
|
|
Will also consider PMP settings
|
|
|
|
|
2023-09-11 05:05:53 -05:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
### IS_POD_URL_EDITABLE
|
|
|
|
|
|
|
|
Allow user to edit the POD via triple click on url at 'About Us'
|
|
|
|
By default its value will be 'true'
|
|
|
|
|
|
|
|
Expected values:
|
|
|
|
|
|
|
|
* "true"
|
|
|
|
Allow user to edit pod url
|
|
|
|
* "false"
|
|
|
|
Prevent user from editing pod url
|
|
|
|
|
2023-03-28 08:10:18 -05:00
|
|
|
#### Example, install with browser login autoconnect enabled
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi BROWSER_LOGIN_AUTOCONNECT="true"
|
|
|
|
|
|
|
|
#### Example, install with browser login autoconnect disabled
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi BROWSER_LOGIN_AUTOCONNECT="false"
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi
|
2023-07-12 04:39:33 -05:00
|
|
|
|
|
|
|
#### Example, install with force auto-update
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi FORCE_AUTO_UPDATE="true"
|
|
|
|
or
|
|
|
|
msiexec /i Symphony.msi
|
|
|
|
This equals to msiexec /i Symphony.msi FORCE_AUTO_UPDATE="false"
|
2023-09-11 05:05:53 -05:00
|
|
|
|
|
|
|
#### Example, install with pod url not editable
|
|
|
|
|
|
|
|
msiexec /i Symphony.msi IS_POD_URL_EDITABLE="false"
|
|
|
|
or
|
|
|
|
msiexec /i Symphony.msi
|
|
|
|
This equals to msiexec /i Symphony.msi IS_POD_URL_EDITABLE="true"
|