AD recycle bin is enabled but Deleted Objects container is not showing in Active Directory Administrative Center.

Prabhat Mehra 40 Reputation points
2023-07-05T20:03:17.99+00:00

I have a domain in which AD recycle bin is enabled but Deleted Objects container is not showing in Active Directory Administrative Center. Can someone help why it is not showing?

Windows for business Windows Client for IT Pros Directory services Active Directory
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2023-07-06T03:07:33.69+00:00

    Hi,

    Please open PowerShell from the start menu and run

    Get-ADObject -filter 'isdeleted -eq $true' -includeDeletedObjects 
    

    This should return the Deleted Objects container and all the deleted objects.

    If the Deleted Objects container is not returned, please run

    Enable-ADOptionalFeature 'Recycle Bin Feature' -Scope ForestOrConfigurationSet -Target root.domain
    

    Replace root.domain with your own root domain name.

    If there are multiple domain controllers you may have to wait until the domain controllers replicated the Recycle Bin configuration change.

    Best Regards,

    Ian Xue

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.