Our MSI installer is designed to install and uninstall silently using MSI Exec.
The code for silently installing the SMS is as follows:
msiexec.exe /i "FILEPATH TO GMETRIX SMS INSTALL FILE" /passive
For example, the following is what to enter into the command line, if the MSI is for version 5.2.501 and it is located in the root of the C drive:
msiexec.exe /i "C:GMetrixSMS_enUS_5.2.501.msi" /passive
/i is the install switch. You can use /r for repair, or /x for uninstall. The file path needs to be the location that you have saved the MSI. /passive is the switch for an unattended installation.
For Complete install, instead of Typical, use:
msiexec.exe /i "FILEPATH TO GMETRIX SMS INSTALL FILE" InstallLevel=1000 /passive
Note: If you are using an installer other than MSI Exec the exact syntax may vary.