From 15e24e5cd69fdf0882a8f71319115ebcb19ec62e Mon Sep 17 00:00:00 2001 From: Abc Date: Fri, 25 Jul 2025 21:11:44 -0700 Subject: [PATCH] Don't restart automatically after installing VC redistributable Add flag to VC redistributable installer to prevent it from restarting the computer automatically without prompting the user. --- CMakeModules/nsis/NSIS.template.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/nsis/NSIS.template.in b/CMakeModules/nsis/NSIS.template.in index 3eaad1c383..c46274518c 100644 --- a/CMakeModules/nsis/NSIS.template.in +++ b/CMakeModules/nsis/NSIS.template.in @@ -741,7 +741,7 @@ Section "-Core installation" SectionEnd Section "-Visual C++ installation" - ExecWait "$INSTDIR\lib\vc_redist.x64.exe /install /passive" + ExecWait "$INSTDIR\lib\vc_redist.x64.exe /install /passive /norestart" Delete "$INSTDIR\lib\vc_redist.x64.exe" SectionEnd