The EXE setup fileAdvanced 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 it's settings. It can also receive command line options.
Standard command line switchesYou can use all of the command line options that MSIEXEC accepts (basically all the command line parameters you can use for a MSI package). The 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 Bootstrapper Page. If you need to specify the package location in the supplied command line, then you can use the // marker and the setup will replace this parameter with the actual path to the MSI package. If this marker is not specified in the command line, the setup will insert "/i path_to_msi" in the command line, which will automatically perform an installation. Example of valid command line options include: "/q", "/log", "/a //", "/x // /log", etc.
Proprietary command line switches/extract <path>Extracts the MSI contained by the EXE to the specified location. 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 /helpBoth these commands will display a help dialog containing the command line options for the EXE setup. /exenouiLaunches the EXE setup without UI. /exebasicuiLaunches the EXE setup with basic UI.
/listlangsLists the languages supported by the EXE setup. /exelang <langId>Launches the EXE setup using the specified language. This command line option will have effect only if the EXE setup was build with the language selection dialog
Return codeThe EXE bootstrapper will return -1 if the user presses the "Cancel" button, while installing the prerequisites. Otherwise it will return the code returned by MSIExec.exe after running the main MSI.
| |
|
| Privacy Policy | Windows Installer | Search Engine Ranking | Link Analyzer | ||
| © 2002 - 2008 Caphyon Ltd. Trademarks belong to their respective owners. All rights reserved. | ||