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
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
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
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.
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:
I hope the information above is helpful.
Best Regards,
Yanhong Liu
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.