Checklist for SCCM / Intune / unattended install from the Inno Setup section of Installation and folders.

Prerequisites

Item Notes
OS Windows 10/11 64-bit
Runtime .NET 10 Desktop Runtime (x64) unless your package already bundles it
Elevation Run the setup elevated
TDA converter Optional — only for MassHunter .D that lack MSTree2.bin (Agilent MassHunter Quant). ChemStation and SCIEX do not need it

Typical silent command

Example setup name (match your build artifact):

bat Quanto-1_8-setup.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /LOG="%TEMP%\quanto-setup.log"

Parameter Purpose
/VERYSILENT No prompts, no progress window
/SUPPRESSMSGBOXES Auto-answer message boxes
/NORESTART Do not reboot even if Windows asks
/LOG=... Detailed Inno log

Also available: /SILENT (progress window), /DIR=, /GROUP=, /CLOSEAPPLICATIONS, /FORCECLOSEAPPLICATIONS, /NOCLOSEAPPLICATIONS. There are no optional Tasks/Components in this script.

After silent install

Permissions pointer

Use the permissions table in Installation and folders: Program Files read/execute; Public Documents license/config as needed; Local AppData full control; study folders and Agilent .D write when MH indexing must run on the PC.

Related