Deleted Objects Question

Is there a column we can add in the gui to show which OU the object was deleted from when searching in the Deleted Objects container in Active Roles?

We want to find all objects in the Deleted Objects container that were deleted from a specific OU and restore them.  

Thank you.

Top Replies

Parents
  • I think it would be more practical to achieve this using Powershell.

    get-qadobject -Proxy -SearchRoot "CN=Deleted Objects,DC=mydomain,DC=com" -IncludedProperties objectclass,lastknownparent | where {$_.objectclass -contains 'user' } | select DN,lastknownparent

Reply
  • I think it would be more practical to achieve this using Powershell.

    get-qadobject -Proxy -SearchRoot "CN=Deleted Objects,DC=mydomain,DC=com" -IncludedProperties objectclass,lastknownparent | where {$_.objectclass -contains 'user' } | select DN,lastknownparent

Children
No Data