With the cmdlet Get-ADObject you will be able to list the deleted objects in your Active Directory domain Pre-requesite : import-module activedirectory Script : Get-ADObject -Filter ‘isdeleted -eq $TRUE -and name -ne “Deleted Objects”‘ -IncludeDeletedObjects -Properties * | ` Format-List
Dump the user object DACL permissions
Get all DCs in a forest and resolve hostname to IP address
Active Directory backup check
Get all cluster groups in an AD domain and their current owners
List the active databases in an Exchange organization
Get a service status on remote servers
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
Change a value in a remote registry
With this script, you will be able to change a value in a remote registry (remote computer names listed in a host file). The registry value type can be the following (http://msdn.microsoft.com/en-us/library/microsoft.win32.registryvaluekind.aspx) : String ExpandString Binary DWord MultiString QWord $file