Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This article describes standard command-line options for the Microsoft Standard Installer msiexec.exe, the app you use to interpret packages and install products.
Command-line options are case insensitive.
Msiexec sets and returns an error level that corresponds to system error codes.
Note
The Msiexec command-line options are available beginning with Windows Installer 3.0. The Windows Installer command-line options are available with Windows Installer 3.0 and earlier. This article lists the Windows Installer command-line option that corresponds to each Standard Installer option.
Help and quick reference option. Displays the correct usage of the msiexec
command, including a list of all switches and behavior. You can display the usage descriptions in the user interface. Incorrect use of any other option invokes this help option.
The equivalent Windows Installer command-line option is /?
.
msiexec /help
.
Quiet display option. The installer runs an installation without displaying a user interface. No prompts, messages, or dialog boxes display to the user. The user can't cancel the installation.
Use the /norestart
or /forcerestart
standard command-line options to control reboots. If no reboot option is specified, the installer restarts the computer whenever necessary without displaying any prompt or warning to the user.
The equivalent Windows Installer command-line option is /qn
.
msiexec /package Application.msi /quiet
msiexec /uninstall Application.msi /quiet
msiexec /update msipatch.msp /quiet
msiexec /uninstall msipatch.msp /package Application.msi /quiet
Passive display option. The installer displays a progress bar to the user that indicates that an installation is in progress, but displays no prompts or error messages to the user. The user can't cancel the installation.
Use the /norestart
or /forcerestart
standard command-line options to control reboots. If no reboot option is specified, the installer restarts the computer whenever necessary without displaying any prompt or warning to the user.
The equivalent Windows Installer command-line option is /qb!
- with REBOOTPROMPT=S
set on the command line.
msiexec /package Application.msi /passive
Never restart option. The installer never restarts the computer after the installation.
The equivalent Windows Installer command line has REBOOT=ReallySuppress
set on the command line.
msiexec /package Application.msi /norestart
Always restart option. The installer restarts the computer after every installation.
The equivalent Windows Installer command line has REBOOT=Force
set on the command line.
msiexec /package Application.msi /forcerestart
Prompt before restarting option. Displays a message that a restart is required to complete the installation and asks the user whether to restart the system now. You can't use this option with the /quiet
option.
The equivalent Windows Installer command line has REBOOTPROMPT=""
set on the command line.
Uninstall product option. Uninstalls a product.
The equivalent Windows Installer command-line option is /x.
<Package>.msi | <ProductCode>
Uninstall update option. Uninstalls an update patch.
The equivalent Windows Installer command-line option is /I
with MSIPATCHREMOVE=Update1.msp | PatchGUID1[;Update2.msp | PatchGUID2]
set on the command line.
msiexec /uninstall Update1.msp;PatchGUID2
Log option. Writes logging information into a log file at the specified existing path. The path to the log file location must already exist. The installer doesn't create the directory structure for the log file.
For more information about all the methods that are available for setting the logging mode, see Normal logging for the Windows Installer.
The equivalent Windows Installer command-line option is: /L*
.
The following information is entered into the log:
Install product option. Installs or configures a product.
The equivalent Windows Installer command-line option is /I
.
<Package>.msi | <ProductCode>
Install patches option. Installs one or multiple patches.
The equivalent Windows Installer command line has PATCH = [<msipatch>.msp]<;PatchGuid>
set on the command line.
<Patch>.msp | <PatchGUID>
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register today