```PowerShell Get-ADObject -Filter {isDeleted -eq $True -and Name -like "*recycle*"} -IncludeDeletedObjects -Properties * | FL name,samaccountname,lastknownparent ``` ```PowerShell Get-ADObject -Filter {isDeleted -eq $True -and samaccountname -eq "recycletest"} -IncludeDeletedObjects | Remove-ADObject ``` https://mymeasi.wordpress.com/2022/11/30/permanently-delete-objects-from-the-active-directory-recycle-bin/