Reputation: 363
Is the driver "SQL server native client 10.0" compatible with Windows XP?
Thanks
Upvotes: 1
Views: 17257
Reputation: 1030
If for some legacy reason you need to install "ODBC Driver 11 for SQL Server" on Windows XP instead of version 10 (for example, because you need TDS 7.4 support, or you need to support SQL Server Availability Group listeners, etc.), but you receive the following error message: "Installation of this product failed because it is not supported on this operating system."
You can use the procedure from here to create an msodbcsql.msi file that will install on Windows XP: How to change the compatibility setting of msi
The steps are:
(VersionNT = 600 AND ServicePackLevel >= 2) OR (VersionNT >= 601)
" and change it to: "(VersionNT >= 500)
"Upvotes: 0