mirror of
https://github.com/benclaussen/NetboxPS.git
synced 2025-12-13 18:02:29 +00:00
19 lines
696 B
PowerShell
19 lines
696 B
PowerShell
|
|
Function Set-NetboxUntrustedSSL {
|
||
|
|
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseShouldProcessforStateChangingFunctions", "")]
|
||
|
|
Param( )
|
||
|
|
# Hack for allowing untrusted SSL certs with https connections
|
||
|
|
Add-Type -TypeDefinition @"
|
||
|
|
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 -TypeName TrustAllCertsPolicy
|
||
|
|
|
||
|
|
}
|