change vcredist install option from "/quiet" to "/passive" (#3175)

This commit is contained in:
tooomm 2018-04-07 18:32:20 +02:00 committed by Zach H
parent a0d84114de
commit 42d15c39a0

View file

@ -199,12 +199,12 @@ ${If} $PortableMode = 0
IfFileExists "$INSTDIR\vc_redist.x86.exe" VcRedist86Exists PastVcRedist86Check
VcRedist86Exists:
ExecWait '"$INSTDIR\vc_redist.x86.exe" /quiet /norestart'
ExecWait '"$INSTDIR\vc_redist.x86.exe" /passive /norestart'
PastVcRedist86Check:
IfFileExists "$INSTDIR\vc_redist.x64.exe" VcRedist64Exists PastVcRedist64Check
VcRedist64Exists:
ExecWait '"$INSTDIR\vc_redist.x64.exe" /quiet /norestart'
ExecWait '"$INSTDIR\vc_redist.x64.exe" /passive /norestart'
PastVcRedist64Check:
${Else}