From 20f422f76d90eca35f2b5f6ad2e6ef4a8552624f Mon Sep 17 00:00:00 2001 From: Uwe Date: Thu, 27 Jan 2022 03:57:40 +0100 Subject: [PATCH] don't force CRC Forcing CRC (cyclic redundancy check) is the safest method but when installing silently one gets a shop popup about the ongoing CRC and this was reported as bug. As solution just turn CRC on and users of the silent installer mode can omit the CRC by setting a flag. --- src/WindowsInstaller/FreeCAD-installer.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WindowsInstaller/FreeCAD-installer.nsi b/src/WindowsInstaller/FreeCAD-installer.nsi index eb98272bad..349cd84a05 100644 --- a/src/WindowsInstaller/FreeCAD-installer.nsi +++ b/src/WindowsInstaller/FreeCAD-installer.nsi @@ -6,7 +6,7 @@ Compatible with NSIS 3.x # Do a Cyclic Redundancy Check to make sure the installer # was not corrupted by the download. -CRCCheck force +CRCCheck on # make it a Unicode installer Unicode true