Skip to content

Instantly share code, notes, and snippets.

@xtrmstep
Created March 29, 2016 09:02
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save xtrmstep/8788fa8ff9c4554db6f0 to your computer and use it in GitHub Desktop.
Save xtrmstep/8788fa8ff9c4554db6f0 to your computer and use it in GitHub Desktop.
PowerShell script to delete all \bin and \obj folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment