You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// info = DriverInfo.GetDriverInfo(Provider["ProgID"].ToString(), versionInfo, windowsVersion, windowsReleaseID); // okay for Win 2019 and prior, need display version for 2022 and later
publicstaticDriverInfoGetDriverInfo(stringdriverName,FileVersionInfoversionInfo,stringWindowsVersion,stringWindowsReleaseID)// TODO - fix up MinTLSVersion and Server Support
39
+
publicstaticDriverInfoGetDriverInfo(stringdriverName,FileVersionInfoversionInfo,stringWindowsVersion,stringWindowsDisplayVersion)// TODO - fix up MinTLSVersion and Server Support
40
40
{
41
41
stringTLS12="No";
42
42
stringTLS13="No";
@@ -60,7 +60,8 @@ public static DriverInfo GetDriverInfo(string driverName, FileVersionInfo versio
60
60
{
61
61
case"SQLOLEDB":
62
62
case"SQL Server":
63
-
switch(WindowsReleaseID.ToUpper())
63
+
// switch (WindowsReleaseID.ToUpper()) // okay for pre-Win 11 or Win 2022
64
+
switch(WindowsDisplayVersion.ToUpper())
64
65
{
65
66
case"":// Windows 8.1/2012 R2 and earlier - Won't fix these versions: Windows 2003, XP, 2008, 2008 R2, 2012
66
67
// Windows 8.1 and Windows 2012 R2 = version 6.3.9600 - what build supports the updated DBNETLIB.DLL???
@@ -104,11 +105,15 @@ public static DriverInfo GetDriverInfo(string driverName, FileVersionInfo versio
0 commit comments