.Net Framework 4.6.1 not defaulting to TLS 1.2

I had a similar problem and this is what worked for me. open Powershell and check for supported protocols by using [Net.ServicePointManager]::SecurityProtocol Run the following 2 cmdlets to set .NET Framework strong cryptography registry keys: set strong cryptography on 64 bit .Net Framework (version 4 and above) Set-ItemProperty -Path ‘HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319’ -Name ‘SchUseStrongCrypto’ -Value ‘1’ -Type … Read more