One-Liner: List Deleted Objects

Short and sweet this week. Just like this one-liner.

Get-ADObject -Filter * -SearchBase "CN=Deleted Objects,DC=fabrikam,DC=com" -IncludeDeletedObjects

 

 

You can change the search base to a different partition if you want to inspect deleted objects from there.

TTFN