After the last update, some https requests began to work incorrectly. Uptime is too long.
Moreover, some requests are processed without problems. Tried changing the SSL option:
Invoke-WebRequest -Uri $SomeHTTPS -SslProtocol {Default | Tls | Ts11 | Ts12} # one of list
or as example
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
But no effect. What is your advice?