From 42d15c39a063ff34cf8e6953691f0060823bf039 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sat, 7 Apr 2018 18:32:20 +0200 Subject: [PATCH] change vcredist install option from "/quiet" to "/passive" (#3175) --- cmake/NSIS.template.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/NSIS.template.in b/cmake/NSIS.template.in index 8f54b3b1..30cf0cd7 100644 --- a/cmake/NSIS.template.in +++ b/cmake/NSIS.template.in @@ -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}