Hybrid Runbook Worker

Runbooks in Azure Automation might not have access to resources in other clouds or in your on-premises environment because they run on the Azure cloud platform. You can use the Hybrid Runbook Worker feature of Azure Automation to run runbooks directly on the computer that’s hosting the role and against Read more…

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…