How to install IRIS Clarity using a .bat file
Why use a .bat file?
If you are manually installing IRIS Clarity on a device rather than through a device management tool (such as Intune, JAMF Pro etc.), then you will need to use a .bat file to ensure any key additional information is added as part of the installation.
Adding the station license key during the installation
- Create a .txt file
- Rename the .txt to .bat
- In the file itself (you can open it with Notepad), add the following text, replacing the installer location and adding the licence key
- Modify the msiexec functions to suit your needs
:: Define the path to the MSI file
set MSI_PATH="path to installer"
:: Define the installation options
set INSTALL_OPTIONS = /passive /norestart
:: Define the license key here
msiexec /I %MSI_PATH% LICENSE_KEY=XXX-XXX-XXX-XX %INSTALL_OPTIONS%
Install path options
The installation path will need to be static. We recommend that either you save the installer to a shared location or, if installing locally via a portable drive, move the installer to somewhere like the users desktop and use that as the installation path.