diff --git a/interface/wx/utils.h b/interface/wx/utils.h
index d2f5e17aac..fd1f2d1f32 100644
--- a/interface/wx/utils.h
+++ b/interface/wx/utils.h
@@ -858,6 +858,7 @@ wxString wxGetOsDescription();
@beginTable
@row3col{Windows OS name, Major version, Minor version}
@row3col{Windows 10, 10, 0}
+ @row3col{Windows Server 2016, 10, 0}
@row3col{Windows 8.1, 6, 3}
@row3col{Windows Server 2012 R2, 6, 3}
@row3col{Windows 8, 6, 2}
diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp
index 6bf4441701..88bb5ddc52 100644
--- a/src/msw/utils.cpp
+++ b/src/msw/utils.cpp
@@ -1226,7 +1226,7 @@ wxString wxGetOsDescription()
case 10:
str = wxIsWindowsServer() == 1
- ? _("Windows Server 10")
+ ? _("Windows Server 2016")
: _("Windows 10");
break;
}