Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Install a Version

msiexec.exe /i <product>.msi

Administrative install of a version

msiexec.exe /a <product>.msi

Install a Patch

msiexec.exe /p <product>.msp

Install a Patch with database updates

msiexec.exe /p c:\<product>.msp SUDB=1

Install to a specific directory silently

msiexec.exe /i <product.msi> APPA=c:\MyInstallLocation /passive

LANSA Public Properties not documented on the installation dialogs

EXITDIALOGOPTIONALCHECKBOX

Disable the Exit Dialog start check box so that the application is not started. If it is set to 0 the check box is not shown. Also note that the /passive command line option and other options that cause the Exit Dialog not to be shown, will not start the application either.

...