Skip to content

Instantly share code, notes, and snippets.

@chgeuer
Created October 20, 2011 14:16
Show Gist options
  • Save chgeuer/1301242 to your computer and use it in GitHub Desktop.
Save chgeuer/1301242 to your computer and use it in GitHub Desktop.
Get rid of Thumbs.db...
Get-ChildItem -Recurse -Force -Filter Thumbs.db | foreach ($_) { Remove-Item -Force -Path $_.fullname }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment