You need to tell .NET to use TLS1.2 which is what the PowerShell code below does (Run it from an Administrative PowerShell Window).
$Properties = @{
Name = 'SchUseStrongCrypto'
Value = '1'
Type = 'DWord'
}
$null,'Wow6432Node' | Foreach-Object {
Set-ItemProperty @Properties -Path "HKLM:\SOFTWARE$("\$_")\Microsoft\.NetFramework\v4.0.30319" -Verbose
}