Skip to content

Instantly share code, notes, and snippets.

@sandorjanssen
Last active April 7, 2017 12:16
Show Gist options
  • Save sandorjanssen/61b08202232796866714 to your computer and use it in GitHub Desktop.
Save sandorjanssen/61b08202232796866714 to your computer and use it in GitHub Desktop.
Delete obj and bin folders recusive
Get-ChildItem .\ -Include bin,obj -Recurse -Force | Remove-Item -Force -Recurse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment