With the following powershell script, you can get a service status on remote servers Script : $ErrorActionPreference = “SilentlyContinue” $strCategory = “computer” $objDomain = New-Object System.DirectoryServices.DirectoryEntry $objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = $objDomain $objSearcher.Filter = (“(objectCategory=$strCategory)”) $colProplist = “name” ,
Search an object forest wide
Manage the file retention on a folder
Local Administrator Password Solution with Powershell
The “Local Administrator Password Solution” (LAPS) provides a centralized storage of secrets/passwords in Active Directory (AD) – without additional computers. Each organization’s domain administrators determine which users, such as helpdesk admins, are authorized to read the passwords. Source Boe Prox