I am wanting to run a web scraping script on a server.
The current script collects the html on the specified page.
$url = \"http://websms\" [net.ht
This one liner will ignore SSL certificate errors:
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
Errors regarding self-signed untrusted certificates, mismatching names or expiration will be ignored after this is executed.