aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2026-04-22 23:28:10 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2026-04-22 23:28:10 +0200
commit01ec1ce1b53084f3732472bcf764edab06da0c26 (patch)
tree5f122397d966487cfcb4b9f8cb6d72b2bd6ef5ca
parentversion: bump to 1.0.1 (diff)
downloadwireguard-windows-master.tar.xz
wireguard-windows-master.zip
installer: reduce windows 7 disappointment emailHEADmaster
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--installer/customactions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/installer/customactions.c b/installer/customactions.c
index 8006815a..391dd9f5 100644
--- a/installer/customactions.c
+++ b/installer/customactions.c
@@ -109,6 +109,7 @@ __declspec(dllexport) UINT __stdcall CheckWinVer(MSIHANDLE installer)
if (maj >= 10)
return ERROR_SUCCESS;
is_com_initialized = SUCCEEDED(CoInitialize(NULL));
+ ShellExecute(NULL, TEXT("open"), TEXT("https://lists.zx2c4.com/pipermail/wireguard/2026-March/009541.html"), NULL, NULL, SW_SHOWNORMAL);
log_messagef(installer, LOG_LEVEL_MSIERR, TEXT("WireGuard requires Windows ≥10."));
if (is_com_initialized)
CoUninitialize();