Powershell BLOG
Active Directory Health Check
Quick Active Directory Health Check sending to your email , you can setup this script via schedule task and have it daily in your mailbox ! Function Getservicestatus($service, $server) { $st = Get-service -computername $server | where-object { $_.name -eq $service } if($st) {$servicestatus= $st.status} else {$servicestatus = "Not found"} Read more…