Enabling TLS 1.1+ UNIFYBroker v5
As a default, the version of .NET used by UNIFYBroker v5 disables all TLS versions greater than 1.0.
If TLS 1.1+ is required, this functionality can be enabled by changing two registry settings with the following PowerShell commands.
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
For more information see Enabling strong cryptography for all .Net applications.
Customer support service by UserEcho
Also note that if working with PowerShell and wishing to use Invoke-WebRequest you will need to precede the call with this: