Hi,
As you may have noticed, we're using Provider=SQLOLEDB.1 to connect to our SQL server which may introduce issues when TLS v1.2 is required.
If you want to leverage TLS v1.2 you can follow these steps:
- - download the SQL 2008 and 2008 R2 TLS 1.2 SQL Native Client update or Microsoft® SQL Server® 2012 Native Client
- - install the SQL client on your DSC Web Pull Server
- - open the web.config with your favorite editor and change <add key="dbconnectionstr" value="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=master;Data Source=SQL\DSC" /> to <add key="dbconnectionstr" value="Provider=SQLNCLI11;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=master;Data Source=SQL\DSC" />
This enables our DSC Web Pull Server to use the SQL native client.
Happy DSC-ing :smileyhappy: