Install the IRIS Clarity applicationion
IRIS Clarity can be installed by downloading the latest app release from the account dashboard. This is distributed as a .msi file.
Installation wizard
The installation wizard is recommended for teams that do not use any of our Enterprise features like SSO or station-based authentication. The installation wizard will guide you through the installation process.
Microsoft installer
The IRIS Clarity installer natively supports all msiexec commands. This is the recommended installation method for enterprise customers who need to deploy IRIS Clarity to hundreds or thousands of machines or customers requiring enterprise features such as station-based licensing.
For example, to install IRIS Clarity v2.X with no user interaction:
msiexec /i <path_to_package> /qn /norestart
Please note that quiet installations may fail due to existing security policies or environment configurations. You can run msiexec with no display parameters specified or minimal interactions with /passive to test the installation.
Parameters
You can specify optional installation parameters as key value pairs.
|
Option |
Type |
Default |
Description |
|
TEAMID |
string |
null |
Add your team ID to manage application settings from the account dashboard. |
|
SSO_DOMAIN |
string |
null |
Add the domain that you registered when setting up SSO. |
|
LICENSE_KEY |
string |
null |
Add your license key to enable station-based licensing. |
|
LAUNCH_AFTER_INSTALL |
int (0 or 1) |
1 |
Whether IRIS Clarity launches after installation has completed. |
Other parameters that might be used include,
|
Option |
Description |
|
/norestart |
Stops the device from restarting after the installation completes. |
|
/passive |
Specifies unattended mode, which means the installation only shows a progress bar. |
|
/qn |
Specifies there's no UI during the installation process. |
For a full list of msiexec parameters, refer to the Microsoft documentation.
For example, to enter your SSO domain and prevent IRIS Clarity from launching immediately after installation, run:
msiexec /i "IRIS_Clarity_1.X.msi" SSO_DOMAIN=XXXXXX LAUNCH_AFTER_INSTALL=0 /q /norestart