Skip to content

Instantly share code, notes, and snippets.

@beeell1
Created December 26, 2017 01:28
Show Gist options
  • Save beeell1/f9db4113beab4163025c6d2aece8af40 to your computer and use it in GitHub Desktop.
Save beeell1/f9db4113beab4163025c6d2aece8af40 to your computer and use it in GitHub Desktop.
Powershell to log startup with hostname on remote server
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
$params = @{
"host"=$env:computername
}
Invoke-WebRequest -Uri https://example.com/endpoint -Method POST -Body $params
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment