Skip to content

Instantly share code, notes, and snippets.

@SQLDBAWithABeard
Created July 20, 2020 12:11
Show Gist options
  • Save SQLDBAWithABeard/a8a921340363e43e4f068e185c41903f to your computer and use it in GitHub Desktop.
Save SQLDBAWithABeard/a8a921340363e43e4f068e185c41903f to your computer and use it in GitHub Desktop.
Recycle Bin with PowerShell
$shell = New-Object -com shell.application
$rb = $shell.Namespace(10)
$rb.Items() | Sort ModifyDate -Descending | Select -first 10 | ft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment