Which do you plan to use? (e.g., Intune, SCCM, PDQ Deploy, or a basic batch script) Are you deploying to Windows or macOS devices?
The standard command to install ActivInspire silently uses the Windows Installer (msiexec.exe). msiexec.exe /i "ActivInspire.msi" /qn /norestart /i : Commands the engine to install the package. /qn : Sets the user interface level to "none" (Silent mode).
(Required for hardware interaction): msiexec.exe /i "C:\Path\To\ActivDriver.msi" /qn /norestart 3. Configuration and Licensing
psexec -s -i cmd.exe
Remember these key takeaways:
A silent install (or unattended installation) runs a software installer without displaying a graphical user interface (GUI) or prompting the user for input. The installer automatically accepts license agreements, selects default installation paths, and configures settings based on pre-defined parameters or configuration files.
Add the transform to your command: msiexec.exe /i "ActivInspire.msi" TRANSFORMS="your_transform.mst" /qn /norestart 4. Deployment via Managed Tools ActivInspire Network Install Instructions for Windows
Add ActivInspire_Core_Resources.msi as a to ensure resources install alongside the core app. PDQ Deploy Create a New Package in PDQ Deploy. Add an MSI Step . Point to the ActivInspire.msi file.
: Extraction typically yields several separate MSI files that must be deployed in order, including ActivDriver.msi , ActivInspire.msi , and resource packs like ActivInspireMainRes.msi . 2. Core Silent Installation Commands