Merge branch 'master' into SDA-2533-Annotate-BI2

This commit is contained in:
Vishwas Shashidhar 2020-12-04 09:10:05 +05:30 committed by GitHub
commit 7482a4f116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 380 additions and 0 deletions

View File

@ -0,0 +1,371 @@
Windows Installer Instructions
==============================
Install parameters
------------------
-------------------------------------------------------------------
### ALLUSERS
Expected values:
* "1"
Install *For all users* (default)
* ""
Install *Only for me*
#### Example, install *For all users*
msiexec /i Symphony.msi /q ALLUSERS="1"
or
msiexec /i Symphony.msi
#### Example, install *Only for me*
msiexec /i Symphony.msi /q ALLUSERS=""
-------------------------------------------------------------------
### ALWAYS_ON_TOP
Expected values:
* "DISABLED"
Always-on-top disabled (default)
* "ENABLED"
Always-on-top enabled
#### Example, install with always-on-top disabled
msiexec /i Symphony.msi /q ALWAYS_ON_TOP="DISABLED"
or
msiexec /i Symphony.msi /q
#### Example, install with always-on-top enabled
msiexec /i Symphony.msi /q ALWAYS_ON_TOP="ENABLED"
-------------------------------------------------------------------
### AUTO_LAUNCH_PATH
Expected values:
* Full file path for custom auto launch path
#### Example
msiexec /i Symphony.msi /q AUTO_LAUNCH_PATH="C:\Program Files\internet explorer\iexplore.exe"
-------------------------------------------------------------------
### AUTO_START
Expected values:
* "ENABLED"
Auto start enabled (default)
* "DISABLED"
Auto start disabled
#### Example, install with auto start enabled
msiexec /i Symphony.msi /q AUTO_START="ENABLED"
or
msiexec /i Symphony.msi /q
#### Example, install with auto start disabled
msiexec /i Symphony.msi /q AUTO_START="DISABLED"
-------------------------------------------------------------------
### BRING_TO_FRONT
Expected values:
* "DISABLED"
Bring-to-front disabled (default)
* "ENABLED"
Bring-to-front enabled
#### Example, install with bring-to-front disabled
msiexec /i Symphony.msi /q BRING_TO_FRONT="DISABLED"
or
msiexec /i Symphony.msi /q
#### Example, install with bring-to-front enabled
msiexec /i Symphony.msi /q BRING_TO_FRONT="ENABLED"
-------------------------------------------------------------------
### CUSTOM_TITLE_BAR
Expected values:
* "ENABLED"
Custom title bar enabled (default)
* "DISABLED"
Custom title bar disabled
#### Example, install with custom title bar enabled
msiexec /i Symphony.msi /q CUSTOM_TITLE_BAR="ENABLED"
or
msiexec /i Symphony.msi /q
#### Example, install with custom title bar disabled
msiexec /i Symphony.msi /q CUSTOM_TITLE_BAR="DISABLED"
-------------------------------------------------------------------
### DEV_TOOLS_ENABLED
Expected values:
* "true"
Dev tools enabled (default)
* "false"
Dev tools disabled
#### Example, install with dev tools enabled
msiexec /i Symphony.msi /q DEV_TOOLS_ENABLED="true"
or
msiexec /i Symphony.msi /q
#### Example, install with dev tools disabled
msiexec /i Symphony.msi /q DEV_TOOLS_ENABLED="false"
-------------------------------------------------------------------
### FULL_SCREEN
Expected values:
* "true"
Full screen enabled (default)
* "false"
Full screen disabled
#### Example, install with full screen enabled
msiexec /i Symphony.msi /q FULL_SCREEN="true"
or
msiexec /i Symphony.msi /q
#### Example, install with full screen disabled
msiexec /i Symphony.msi /q FULL_SCREEN="false"
-------------------------------------------------------------------
### LOCATION
Expected values:
* "true"
Location enabled (default)
* "false"
Location disabled
#### Example, install with location enabled
msiexec /i Symphony.msi /q LOCATION="true"
or
msiexec /i Symphony.msi /q
#### Example, install with location disabled
msiexec /i Symphony.msi /q LOCATION="false"
-------------------------------------------------------------------
### MEDIA
Expected values:
* "true"
Media enabled (default)
* "false"
Media disabled
#### Example, install with media enabled
msiexec /i Symphony.msi /q MEDIA="true"
or
msiexec /i Symphony.msi /q
#### Example, install with media disabled
msiexec /i Symphony.msi /q MEDIA="false"
-------------------------------------------------------------------
### MIDI_SYSEX
Expected values:
* "true"
Midi SysEx enabled (default)
* "false"
Midi SysEx disabled
#### Example, install with Midi SysEx enabled
msiexec /i Symphony.msi /q MIDI_SYSEX="true"
or
msiexec /i Symphony.msi /q
#### Example, install with Midi SysEx disabled
msiexec /i Symphony.msi /q MIDI_SYSEX="false"
-------------------------------------------------------------------
### MINIMIZE_ON_CLOSE
Expected values:
* "ENABLED"
Minimize-on-close enabled (default)
* "DISABLED"
Minimize-on-close disabled
#### Example, install with minimize-on-close enabled
msiexec /i Symphony.msi /q MINIMIZE_ON_CLOSE="ENABLED"
or
msiexec /i Symphony.msi /q
#### Example, install with minimize-on-close disabled
msiexec /i Symphony.msi /q MINIMIZE_ON_CLOSE="DISABLED"
-------------------------------------------------------------------
### NOTIFICATIONS
Expected values:
* "true"
Notifications enabled (default)
* "false"
Notifications disabled
#### Example, install with notifications enabled
msiexec /i Symphony.msi /q NOTIFICATIONS="true"
or
msiexec /i Symphony.msi /q
#### Example, install with notifications disabled
msiexec /i Symphony.msi /q NOTIFICATIONS="false"
-------------------------------------------------------------------
### OPEN_EXTERNAL
Expected values:
* "true"
Open external enabled (default)
* "false"
Open external disabled
#### Example, install with open external enabled
msiexec /i Symphony.msi /q OPEN_EXTERNAL="true"
or
msiexec /i Symphony.msi /q
#### Example, install with open external disabled
msiexec /i Symphony.msi /q OPEN_EXTERNAL="false"
-------------------------------------------------------------------
### POD_URL
Expected values:
* Full url to POD
(default is "https://my.symphony.com" )
#### Example
msiexec /i Symphony.msi /q POD_URL="https://my.symphony.com"
-------------------------------------------------------------------
### POINTER_LOCK
Expected values:
* "true"
Pointer lock enabled (default)
* "false"
Pointer lock disabled
#### Example, install with pointer lock enabled
msiexec /i Symphony.msi /q POINTER_LOCK="true"
or
msiexec /i Symphony.msi /q
#### Example, install with pointer lock disabled
msiexec /i Symphony.msi /q POINTER_LOCK="false"

View File

@ -106,3 +106,12 @@ if NOT EXIST c:\electron-installer\signing.bat (
call c:\electron-installer\signing.bat
copy "WixSharpInstaller\Symphony.msi" "%targetsDir%\Experimental-%archiveName%.msi"
echo Setup for install instructions
%SystemRoot%\System32\where.exe /q markdown-pdf
if ERRORLEVEL 1 (
call npm install -g markdown-pdf
)
echo Generating install instructions
call %appdata%\npm\markdown-pdf install_instructions_win.md
copy install_instructions_win.pdf "%targetsDir%\Install-Instructions-Experimental-%archiveName%.pdf"