Does windows 2016 server support Microsoft Access Database Engine 2016 Redistributable

Sylwester Santorowski 21 Reputation points
2021-03-03T09:19:19.917+00:00

In order to read the XLSX files I planned to install AccessDatabaseEngine_x64.exe available at: https://www.microsoft.com/en-us/download/details.aspx?id=54920 I realized however that Windows 2016 Server is not listed in the <System Requirements> section. The last version supported is Windows Server 2012 R2. Where can I find the ODBC driver which enables my C# applications to read Excel files safely at Windows Server 2016 ?

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,309 questions
Access Development
Access Development
Access: A family of Microsoft relational database management systems designed for ease of use.Development: The process of researching, productizing, and refining new or existing technologies.
825 questions
0 comments No comments
{count} votes

1 additional answer

Sort by: Most helpful
  1. Castorix31 81,831 Reputation points
    2021-03-03T14:36:20.65+00:00

    I don't know for Microsoft Access Database Engine on Windows Server 2016, but you could also use Open XML SDK to read/write .XLSX
    From requirements (What's new in the Open XML SDK 2.5 for Office), there is :

    "Open XML SDK 2.5 requires .NET Framework 4.0 or the greater version. Accordingly, the supported operating systems are updated to be the same as the requirements of the .NET Framework 4.0."

    So it should work on Windows Server 2016 as .NET Framework 4.6.2 is installed by default (Supported server operating systems)

    0 comments No comments