PowerShell - Get AD Recycle Bin Details
- Jon Boyette
- Sep 27, 2022
- 1 min read
Save the below script named similar, this will list all items that are in your hidden, enabled, AD recycle bin
get-adobject -filter 'objectclass -eq "user" -AND IsDeleted -eq $True' -IncludeDeletedObjects -properties IsDeleted,LastKnownParent | Format-List Name,IsDeleted,LastKnownParent,DistinguishedName
Comments