From 74a517d985af51991431c1b5044535236661073b Mon Sep 17 00:00:00 2001 From: pokamest Date: Wed, 16 Jun 2021 19:06:07 +0300 Subject: [PATCH] Windows server 2012 support --- service/server/tapcontroller_win.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/service/server/tapcontroller_win.cpp b/service/server/tapcontroller_win.cpp index ec038886..b388997a 100644 --- a/service/server/tapcontroller_win.cpp +++ b/service/server/tapcontroller_win.cpp @@ -299,6 +299,7 @@ bool TapController::oldDriversRequired() { if (QOperatingSystemVersion::current() <= QOperatingSystemVersion::Windows7) return true; if (QSysInfo::prettyProductName().contains("Server 2008")) return true; + if (QSysInfo::prettyProductName().contains("Server 2012")) return true; return false; }