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.

  • 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

  • Hi  

    As an extension to the other post (deleted objects question - Forum - Active Roles Community - One Identity Community), you can add a column on the web page.

    Click the menu button (3 horizontal lines next to the filter field), then select "Choose columns"

    From the Choose columns dialog, change Object Type to user, in the field column tyupe LastKnown (or lastknownparent), check the Show All possible properties, select lastKnownParent from the hidden columns list, and click the arrow pointing to the right to add to Display Columns, then click Ok

    Then you'll be able to see that column, or any other column you add. It will also appear on other views including navigating your directory

    Note this is a per user change, this is not a default for all users.