Prepare Scripts for SSL Connections
Created at: 2020-09-24 07:34:46Modified at: 2025-09-19 23:58:16If SSL Connections fail with Security Protocol Error, this code in Main Function could do the trick!
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls
| SecurityProtocolType.Tls11
| SecurityProtocolType.Tls12
| SecurityProtocolType.Ssl3;
Caution: I do not guarantee the reliability of the information given here, the code described on this page is executed at your own risk and in the event of damage or other unforeseeable consequences I am in no way responsible or liable.