Windows Installer, Java Installer, Freeware Installer
Home|Contact|Site Map|TOC|Search
Download  Features   Java  Licensing  Purchase  Testimonials  Support  Forums

How do I create a silent installation package?

Answer

When deploying MSI installation packages through GPO or SMS or simply to your clients, you may want to make them silent. This can be done in several ways:

1. Basic user interface through Advanced Installer

Advanced Installer allows you to make the installation package silent by setting the LIMITUI property inside the MSI. This is done automatically when you check the Limit to basic user interface (simple progress and error handling) option in the Install Parameters page.

2. Basic or no user interface through the MSIEXEC command line

When launching the MSI package from the command line you can use multiple "msiexec.exe" parameters which affect the user interface:

  • full UI: /qf (this is the default parameter used by the package)
  • reduced UI: /qr (the user interface does not show any wizard dialogs)
  • basic UI: /qb, /passive (only a progress bar will be shown during the installation)
  • no UI: /qn, /quiet (no UI will be shown during the installation)
3. Basic or no user interface through the bootstrapper

If your installation package uses an EXE bootstrapper then you can set it to launch the MSI package with a specific command line. In this command line you can use the same parameters used when launching the MSI with MSIEXEC.

The command line of the MSI package can be specified in the MSI Command Line field on the Bootstrapper tab in the Media page.

NoteThe MSIEXEC parameters can also be used for the bootstrapper (for example test.exe /qn). In this case they will be passed to the MSI package.

Privacy Policy | Windows Installer | Search Engine Ranking | Link Analyzer