The AD Recycle Bin cannot be accessed by the Active Directory Administrative Center console

Ivan Vargas Rincon 0 Reputation points
2024-08-08T21:48:38.16+00:00

User's image

Hello team. I'm looking for help to fix the following error, for a few days I haven't been able to access the AD recycle bin to restore deleted objects. I have 2 Domain controllers (Windows server 2016 Standard) in HA. If they require additional information I am attentive. I appreciate you can guide me.

Greetings and thanks

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,335 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Marcin Policht 20,110 Reputation points MVP
    2024-08-08T23:08:35.7566667+00:00

    Try https://learn.microsoft.com/en-us/answers/questions/60891/this-error-happens-all-the-time-when-im-using-the


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


  2. Yanhong Liu 6,735 Reputation points Microsoft Vendor
    2024-08-09T06:29:59.23+00:00

    Hello

    Thank you for posting in Q&A forum.

    It seems is some change make your Recycle Bin can't get the information from the database and showing you, because AD Recycle Bin has been changed after he get the data.

    So here have two possible causes.

    1. Your domain have too much data and it makes your Recycle Bin keep change his collection. It makes he can't show you the information at the page
    2. Your Recycle Bin is broken. In this case, you may need to reinstall the ADAC to see if it can fix you problem by reset your data

    To know if we can fix it, you can try to use the powershell to access the Deleted Objects OU, if it can be accessed, that means it is just page have problem. core code is running well.

    list out all deleted objects and all the attribute data:

    Get-ADObject -filter 'isdeleted -eq $true -and name -ne “Deleted Objects”' -includeDeletedObjects -property *

    restore the object:

    Get-ADObject -Filter 'samaccountname -eq “SaraDavis”' -IncludeDeletedObjects |Restore-ADObject

    Link:

    The AD Recycle Bin: Understanding, Implementing, Best Practices, and Troubleshooting - Microsoft Community Hub

    I hope the information above is helpful.

    Best Regards,

    Yanhong Liu

    ============================================

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