Create EXE setup fileCopy link to this sectionLink to this section copied!

Advanced Installer comes with a Setup program which can be used as a Bootstrapper. This is useful if you want to create an EXE installation package or if your package has some prerequisites.

If you build your EXE setup with the installation files outside (MSI, CAB etc.), the Bootstrapper will use an INI file to store its settings. It can also receive command-line options.

Standard command-line switchesCopy link to this sectionLink to this section copied!

The EXE Setup program (EXE Bootstrapper) supports all msiexec command-line options (basically all the command-line parameters you can use for an MSI package). A command-line received by the EXE Bootstrapper will be passed to msiexec when launching the main MSI. This command-line overrides the one specified in the "Install Options" from the Configuration Settings Tab.

"//" markerCopy link to this sectionLink to this section copied!

The // marker is automatically replaced by the EXE Bootstrapper with <path_to_msi>. Msiexec command-line parameters need to be appended to this command.

Example of an uninstall command passed to the EXE Setup program:

C:\Setup.exe /x // /l*v install.log

The command above will be automatically converted by the Bootstrapper to:

msiexec.exe /x C:\Setup.msi /l*v install.log

Caution!The // sequence of characters is not supported when used in a property value set by the Bootstrapper command-line. If you want to use this sequence (for example a URL which starts with "http://"), you can add the | character in front of //. This way, you will have something like http:|//.

To learn more about how pass commands to your MSI and MSP packages see the Msiexec page.

Proprietary command-line switches for the EXE SetupCopy link to this sectionLink to this section copied!

These commands affect only the language selection dialog and the dialogs in the prerequisite wizard. To also affect the MSI package please use the standard MSIEXEC command-line parameters. Note that the MSI parameters must come after the Bootstrapper parameters.

/extract <path>Copy link to this sectionLink to this section copied!

Extracts the MSI contained by the EXE to the specified location. The full path to an existent folder is required. If the path contains spaces you must enclose it in quotes:

Example

Mypackage.exe /extract "C:\My work"

This command will extract the Mypackage.msi file in the "My work" folder.

/? and /helpCopy link to this sectionLink to this section copied!

Both these commands will display a help dialog containing the command-line options for the EXE setup.

/exenouiCopy link to this sectionLink to this section copied!

Launches the EXE setup without UI.

/exebasicuiCopy link to this sectionLink to this section copied!

Launches the EXE setup with basic UI. The UI level set using the above command-line options will overwrite the default UI level specified when the package was built.

/listlangsCopy link to this sectionLink to this section copied!

Lists the languages supported by the EXE setup.

/exelang <langId>Copy link to this sectionLink to this section copied!

Launches the EXE setup using the specified language. This command-line option will have effect only if the EXE setup was built with the language selection dialog. You can use both a UI level and /exelang command-line options at the same time.

/usernameCopy link to this sectionLink to this section copied!

Sets the username used by the proxy server in case the Installer needs Internet access. This command is deprecated, and you should use /proxyusername instead.

/passwordCopy link to this sectionLink to this section copied!

Sets the password used by the proxy server in case the Installer needs Internet access. This command was deprecated and you should use /proxypassword instead.

/proxyusername <user_name>Copy link to this sectionLink to this section copied!

Sets the username used by the proxy server in case the Installer needs Internet access.

/proxypassword <password>Copy link to this sectionLink to this section copied!

Sets the password used by the proxy server in case the Installer needs Internet access.

/exelog <path_to_log_file>Copy link to this sectionLink to this section copied!

Creates a log file at the specified path with the specified name. If a path and name are not specified, then the log file will be created next to the EXE installer having the same name as the installer and the extension .log.

/exenoupdatesCopy link to this sectionLink to this section copied!

Using this switch will force the Bootstrapper to cancel/discard the update checks if any is declared in the Updater Settings Tab.

/aespasswordCopy link to this sectionLink to this section copied!

Sets the password needed to install an AES encrypted package.

NoteWhen EXE bootstrapper is launched with wrong value for /aespassword parameter, the EXE exit code is 1.

Example

Mypackage.exe /aespassword:"secret"

Installs the AES encrypted Mypackage.exe using the password "secret" to decrypt the package.

NoteA particular example is installing Multiple Instances Page from the command-line. The possibilities are described in How do I install multiple instances from the command line? article.

/prereqs <prereq_id_list>Copy link to this sectionLink to this section copied!

Specifies which prerequisites to be installed.

/noprereqsCopy link to this sectionLink to this section copied!

Skips prerequistes installation.

/newinst <instance_id>Copy link to this sectionLink to this section copied!

Installs new instance, where <instance_id> is the instance id defined in your project

/upgrdinst <instance_product_code>Copy link to this sectionLink to this section copied!

Upgrades an installed instance.

/selinst <instance_product_code>Copy link to this sectionLink to this section copied!

Maintains an installed instance.

instname <new_instance_name>Copy link to this sectionLink to this section copied!

Changes the instance "Product Name" when installing it.

<msiOptions>Copy link to this sectionLink to this section copied!

Options for msiexec.exe on running the MSI package.

command-line switches orderCopy link to this sectionLink to this section copied!

When passing proprietary command-line parameters to an EXE setup, you cannot mix them with the standard MSI ones. The correct order is to first specify the proprietary EXE switches and then the standard MSI switches.

For example, a correct command-line would be:

Setup.exe /exelang 1033 /exenoui /qn /norestart 

as opposed to an incorrect command-line:

Setup.exe /norestart /exelang 1033 /exenoui /qn 

Return codeCopy link to this sectionLink to this section copied!

The EXE Bootstrapper will return:

  • -1, when the user presses the "Cancel" button, while installing the prerequisites
  • 1, when EXE bootstrapper is launched with wrong value for /aespassword parameter
  • otherwise, it will show the code returned by MSIExec.exe after running the main MSI

ImportantThe Setup EXE provides the MSI it launches with the SETUPEXEDIR property which contains the folder path from where it was executed.

Video TutorialCopy link to this sectionLink to this section copied!