Page 1 of 1

MSI with /quiet shows dialoges

Posted: Mon Aug 29, 2016 6:27 am
by mikKummerfeld
Hey Guys,

we have a new MSI Setup and when we use the command:

msiexec.exe /i E:\setups\pServer.msi /quiet

it still opens the welcome dialog after a few seconds.

What did we miss?

Heiko

Re: MSI with /quiet shows dialoges

Posted: Tue Aug 30, 2016 6:50 am
by FrancescoT
Dear Heiko,

please try;

msiexec.exe /i "C:\mypackage.msi" CMDLINE="SILENT=TRUE"

or

msiexec.exe /i "C:\mypackage.msi" CMDLINE="/s"


Regards