Hello,
I try to write a powershell script to monitor our PKI infrastructure but I don't find any solutions to monitor the MSCEP service.
I try to do something like this:
[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true} $wc = New-Object System.Net.WebClient $wc.DownloadString("https://xxxx/CertSrv/mscep")But is this enough? Thank you for your help!