Full Installer¶
The Qualtrak Coach Full Installer.
Description¶
The Qualtrak Coach Installer installs:
- Coach Web Application.
- Recorder integration Web Service.
- Coach Scheduler Windows Service.
- Coach REST API (Docs and Wrapper)[Optional].
Warning
Please make sure to backup all your data before running Qualtrak Coach Installer to make sure of no data loss!
Usage¶
Note
Use config.ps1 to set up Coach Full Installer to meet desired needs.
- Get Help for Qualtrak Coach Installer Cmdlet
Install-CoachFull
Get-Help Install-CoachFull -Full
Install-CoachFull -?
- Run
Install-CoachFullto install Coach. See “Examples” for more info or usage.
Examples¶
Note
- See more info about
Coach-Install-Fullparameters in “Parameters” section. - Please use single quotes (‘’) around parameter values, double quotes (“”) values evaluate as Powershell statement, so it can have undesired effect!
- Minimal command with usage of required parameter
DbPasswd. If omitted, user will be prompted to enter manually:
Coach-Install-Full -DbPasswd '$ecReT'
Full example with all parameters. Note that -SysPasswd is only needed for first-install of Coach.:
Coach-Install-Full -DbSrv 'srv\ins' -DbUsr 'admin' -DbPasswd '$ecReT' -RecorderIP '10.0.0.1' -SysPasswd 'P@$$w0rd'
Parameters¶
Note
Please use single quotes (‘’) around parameter values, double quotes (“”) values evaluate as Powershell statement, so it can have undesired effect!
DbSrv¶
- Specifies the SQL Server database serverinstance.
- General default value can be changed in
config.ps1for property$dbInstanceNameit is by default set to.\SQLEXPRESS.
Note
DbSrvparameter will always overrideconfig.ps1property$dbInstanceName!- If you want to use general default value use
config.ps1property$dbInstanceName, if it is changeable use thisDbSrvParameter.
DbUsr¶
- Specifies the SQL Server database serverinstance user login name.
- This value is not persisted or saved in any way, it is only for lifetime of installation session.
- General default value can be changed in
config.ps1for property$dbLoginNameit is by default set to$null.
Note
DbUsrparameter will always overrideconfig.ps1property$dbLoginName!- If you want to use general default value use
config.ps1property$dbLoginName, if it is changeable use thisDbUsrParameter.
DbPasswd¶
- Specifies the SQL Server database serverinstance password.
- This value is not persisted or saved in any way, it is only for lifetime of installation session.
- Required.
Note
- If not specified will stop script and wait for
DbPasswdenter manually in prompt! - If
DbPasswdvalue is whitespace it will terminate the script!
RecorderIP¶
- Specifies the Recorder IP address with any valid IP Address or DNS name.
- General default value can be changed in
config.ps1for property$recorderIpAddressit is by default set tolocalhost.
Note
- If
RecorderIPparameter will always overrideconfig.ps1property$recorderIpAddress! - If you want to use general default value use
config.ps1property$recorderIpAddress, if it is changeable use thisRecorderIPParameter.
SysPasswd¶
- Specifies the Coach System Administrator password.
- It is required on Coach first-install.
Note
- If not specified on Coach first-install it will stop script and wait for
SysPasswdenter manually in prompt! - If
SysPasswdvalue is empty or whitespace it will terminate the script! - If used on Coach release update will display warning, because in that case
SysPasswdwill be completely ignored by install.