Hi guy's i am using inno setup to create an installer for my application.

I am using this as part of my code inside of Inno Setup.

Code:
[Run]
Filename: "msiexec.exe"; Parameters: "/i ""{app}\setup.msi"" /passive"
Filename: "{app}\vlc.exe"; parameters: /L=1033 /S /NCRC
Filename: "{app}\Live Media Box.exe"; Description: "{cm:LaunchProgram,Live Media Box}"; Flags: nowait postinstall skipifsilent
How ever for some reason it's not installing setup.msi in passive mode, but is installing VLC.exe

But if i remove the second like 'vlc line then it will install setup.msi in passive mode.

Does anyone know why it is doing this?

Thanks