Skip to content

Instantly share code, notes, and snippets.

@jschlackman
Created January 16, 2025 02:02
Show Gist options
  • Save jschlackman/a48161ad2e747d84e0178ce081b9a874 to your computer and use it in GitHub Desktop.
Save jschlackman/a48161ad2e747d84e0178ce081b9a874 to your computer and use it in GitHub Desktop.
List all objects in the Active Directory Recycle Bin and allow selection of an object to be permanently removed immediately
Get-AdObject -Filter 'IsDeleted -eq $True' -IncludeDeletedObjects -Properties * | Out-GridView -OutputMode Single | Remove-ADObject
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment