浏览代码

Block windows installation if old innosetup version is installed

Armin Schrenk 3 年之前
父节点
当前提交
e482574aaf
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      dist/win/resources/main.wxs

+ 10 - 0
dist/win/resources/main.wxs

@@ -47,6 +47,16 @@
     <CustomAction Id="JpDisallowDowngrade" Error="!(loc.DowngradeErrorMessage)" />
     <?endif?>
 
+    <!-- Looking for legacy Cryptomator versions-->
+    <Property Id="OLDEXEINSTALLER">
+      <RegistrySearch Id="InnoSetupInstallation" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Cryptomator_is1" Type="raw" Name="DisplayName" />
+    </Property>
+    <!-- Block installation if innosetup entry of Cryptomator is found -->
+    <!-- TODO: localize -->
+    <Condition Message="A lower version of [ProductName] is already installed. Uninstall it first and then start the setup again. Setup will now exit.">
+        <![CDATA[Installed OR NOT OLDEXEINSTALLER]]>
+    </Condition>
+
     <!-- Standard required root -->
     <Directory Id="TARGETDIR" Name="SourceDir"/>