MSIEXEC – difference between /quiet and /passive

installationwindows-installer

So according to msdn

Quiet mode, no user interaction
/quiet

Unattended mode – progress bar only
/passive

so if I want to install MSI i usually use /qn /quiet and everything goes fine.

Just want to know what is /passive used for.

one thing That I see sometime that in msdn i just see /q is this the same as /qn

dotNetFx45_Full_x86_x64.exe /q /norestart

https://msdn.microsoft.com/en-us/library/ee942965%28v=vs.110%29.aspx

Best Answer

/qn no UI
/quiet no user interaction
/passive unattended mode (only progress bar)

Related Topic