cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Nithyapriya
Level 5

Redistributable Fails on MSI silent installation

Hi team,

        When we try to do silent installation with MSI , the prerequisite files are extracted from setup.exe and triggers prq file, installation of prerequisite action takes place, but prerequisite fails always. How can I make all my prq get installed on MSI silent installation of installer.

 

Thanks,

Nithya

Labels (1)
0 Kudos
(1) Reply
shunt
Revenera Moderator Revenera Moderator
Revenera Moderator

Hi,

Are these Setup or Feature prerequisites?

If you are using Feature Prerequisites then the UI of the installer is skipped and so is the action that starts the prerequisites "ISInstallPrerequisites".
If this is the case you'll need to make sure that you are using Setup prerequisites instead.

Within the prerequisite editor, under the "Application to run" tab - there is a field to add the command line that is passed to the prerequisite if the installer is launched silently.
Double check that you can run these commands against the prerequisite executable files manually to make sure the commands are correct and install correctly.

Also, a prerequisite will return a failed install if its conditions are still not met after it completes.
Within the prerequisite editor - under the condition tab - check to see if the conditions are met after the prerequisite completes.

Finally, you can log the setup.exe using "setup.exe /debuglog" this may provide details as to why the prerequisite is failing.

hope this helps,
Stuart

0 Kudos