Skip to content

Instantly share code, notes, and snippets.

@manualbashing
Last active June 7, 2019 10:32
Show Gist options
  • Save manualbashing/4277eb26444bf6497cc8 to your computer and use it in GitHub Desktop.
Save manualbashing/4277eb26444bf6497cc8 to your computer and use it in GitHub Desktop.
Empty the recycle bin on a Windows system
$Shell = New-Object -ComObject Shell.Application
$RecBin = $Shell.Namespace(0xA)
$RecBin.Items() | %{Remove-Item $_.Path -Recurse -Confirm:$false}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment