1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 00:04:57 +03:00

Merge pull request #930 from dnobori/190630_kb3033929_message

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 02:24:24 +09:00
committed by GitHub
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;