This article is for system administrators who want to deploy the Draftable Legal application via a silent install method. There are multiple installers, and each installer has slightly differing silent install parameters.
Default Installer
The silent install parameter -s|--silent
is required for the default installer.
Hence an example of installing the default installer silently is: C:\Users\YourUsername\Documents\DraftableDesktopSetup.exe --silent
Per User MSI
To install the per-user MSI installer silently, use the /quiet
command-line parameter.
Hence an example of installing the Per User MSI silently is:msiexec /i DraftableDesktopUser.msi /quiet
Machine Wide MSI
To install the Machine-wide MSI installer silently, use the /quiet
command-line parameter. We have two examples that can apply to the machine-wide MSI.
Example 1: Install silently into a custom location
msiexec /i DraftableSetupSystem.msi /quiet INSTALLDIR="C:\Apps\Draftable\Desktop"
Example 2: Install silently without a desktop shortcut
msiexec /i DraftableSetupSystem.msi /quiet ADDLOCAL=DraftableDesktop, StartMenuShortcut