From 742be01aa68382866bcdd440a6b0808d289861aa Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 10 Aug 2025 18:34:12 +0200 Subject: [PATCH] nsi: Add /norestart to vc redist install --- dist/windows/strawberry.nsi.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/windows/strawberry.nsi.in b/dist/windows/strawberry.nsi.in index a99fe7812..8d08d15ea 100644 --- a/dist/windows/strawberry.nsi.in +++ b/dist/windows/strawberry.nsi.in @@ -224,7 +224,7 @@ Function InstallMSVCRuntime ; ${If} $R0 == "" SetDetailsView hide ; inetc::get /caption "Downloading..." "https://aka.ms/vs/17/release/${vc_redist_file}" "$TEMP\${vc_redist_file}" /end - ExecWait '"$TEMP\${vc_redist_file}" /install /passive' + ExecWait '"$TEMP\${vc_redist_file}" /install /passive /norestart' Delete "$TEMP\${vc_redist_file}" SetDetailsView show ; ${EndIf}