1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 08:14:58 +03:00

Add the warning message if KB3033929 is not installed in Windows 7 / Server 2008 R2.

This commit is contained in:
Daiyuu Nobori
2019-06-30 01:20:52 +09:00
parent 2da6e4c491
commit 9c227f3480
9 changed files with 75 additions and 0 deletions

View File

@ -5640,6 +5640,15 @@ UINT SwWelcomeDlg(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, WIZARD *wiz
break;
}
if (MsIsKB3033929RequiredAndMissing())
{
// KB3033929 is missing
if (MsgBoxEx(hWnd, MB_ICONINFORMATION | MB_OKCANCEL, _UU("SW_KB3033929_REQUIRED")) == IDCANCEL)
{
break;
}
}
if (sw->DoubleClickBlocker)
{
break;