I'm working on a MSI file which is able to install 2 tools. Both tools are installed from an exe file but which are able to be launched silently with arguments like /SI I can built the project without problem, without warning... Un-install works fine too. If I double click on my MSI file, both software are installed without problem.... then I can uninstall without problem ...
But If I launch my msi file using msiexec /i mymsi.msi /qn this time just the first software TOOL-A is installed... then nothing else. You can see below my configuration: Tool-A custom action
Tool-A Custom Actions:
Executable Filekey: setup.exe
Command Line: /SI
Return Processiong: Synchronous (check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling: Execute only once
Install UI Sequence: After ExecuteAction
Install UI Condition: Not Installed
Install Exec Sequence: After InstallFinalize
Install Exec Condition: Not Installed
Advertise Exec Sequence: Absent from sequence
Admin UI Sequence: <Absent from sequence>
Admin Exec Sequence: <Absent from sequence>
MSI Type Number 274
And for the second tool (never installed using MSIEXEC )
Tool-B custom action
Executable Filekey: setup.exe1
Command Line: /q
Return Processiong: Synchronous (check exit code)
In-Script Execution: Immediate Execution
Execution Scheduling: Execute only once
Install UI Sequence: After tool-A
Install UI Condition: Not Installed
Install Exec Sequence: After tool-A
Install Exec Condition: Not Installed
Advertise Exec Sequence: <Absent from sequence>
Admin UI Sequence: <Absent from sequence>
Admin Exec Sequence: <Absent from sequence>
MSI Type Number 274
So if someone can help me ? To summurize: If the MSI is launched via double-click no problemo: tool-A and tool-B are installed ! If I use Msiexec /i mymsi.msi /qn just tool-A is installed !!!
Many thanks for your help. With my best regards.