aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-11-13 13:58:22 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-11-16 18:17:05 +0100
commita8494fbe2ad8a6cc722cfe4d400797076df2bb1b (patch)
tree0b3b3b9c911f0358bab048cb1464911d36ef08b0
parentinstaller: require KB2921916 on Windows 7 (diff)
downloadwireguard-windows-a8494fbe2ad8a6cc722cfe4d400797076df2bb1b.tar.xz
wireguard-windows-a8494fbe2ad8a6cc722cfe4d400797076df2bb1b.zip
installer: do not check for Wow64 and KB when removing
We want removal to be as frictionless as possible. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--installer/wireguard.wxs4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/wireguard.wxs b/installer/wireguard.wxs
index 02f0dd54..71445560 100644
--- a/installer/wireguard.wxs
+++ b/installer/wireguard.wxs
@@ -96,7 +96,7 @@
-->
<CustomAction Id="CheckWow64" BinaryKey="customactions.dll" DllEntry="CheckWow64" />
<InstallExecuteSequence>
- <Custom Action="CheckWow64" After="FindRelatedProducts" />
+ <Custom Action="CheckWow64" After="FindRelatedProducts">NOT REMOVE</Custom>
</InstallExecuteSequence>
<!--
@@ -104,7 +104,7 @@
-->
<CustomAction Id="CheckKB2921916" BinaryKey="customactions.dll" DllEntry="CheckKB2921916" />
<InstallExecuteSequence>
- <Custom Action="CheckKB2921916" After="CheckWow64" />
+ <Custom Action="CheckKB2921916" After="CheckWow64">NOT REMOVE</Custom>
</InstallExecuteSequence>
<!--