Skip to content
English
  • There are no suggestions because the search field is empty.

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 

  1. Create a .txt file
  2. Rename the .txt to .bat
  3. In the file itself (you can open it with Notepad), add the following text, replacing the installer location and adding the licence key
  4. 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.