MSI.RunMsiexec

number MSI.RunMsiexec ( 

string  Arguments,

boolean WaitForReturn = true )

Example 1

-- The path to extract the file.
strExtractPath = Shell.GetFolder(SHF_APPLICATIONDATA).."\\ExtractedInstallation\\setup.msi";

strCommandLine = "-i \""..strExtractPath.."\" REINSTALL=ALL REINSTALLMODE=vomus";
-- Run the setup.
nResult = MSI.RunMsiexec(strCommandLine);

Runs the file "setup.msi" using the MSI.RunMsiexec action.

See also:  Related Actions