Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Created May 24, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techthoughts2/856714cf9dfc3f11638f69e51b68cc4e to your computer and use it in GitHub Desktop.
Save techthoughts2/856714cf9dfc3f11638f69e51b68cc4e to your computer and use it in GitHub Desktop.
This code block can be used to permit Invoke-WebRequest to work with SSL addresses that don't have a trusted certificate authority
##############################################################
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
##############################################################
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment