Windows Installer
Default Windows Installer
MSI installer
# Standard installation
msiexec /i "installer.msi"
# Override installation location
msiexec /i "installer.msi" APPLICATIONFOLDER=C:\ApplicationPath
# Install for the current used instead of machine-wide:
msiexec /i "installer.msi" MSIINSTALLPERUSER=1
# Silent install (/qn), and log verbose output to a text file (/lv):
# Note: In case of a silent install, the command must be run as an Administrator,
# since the elevation prompt is disabled.
msiexec /i "installer.msi" /qn /lv log.txtUninstalling
Last updated