Skip to content

Instantly share code, notes, and snippets.

@dadhi
Created July 1, 2020 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dadhi/a6a8931498b5c7065c553f74178ad798 to your computer and use it in GitHub Desktop.
Save dadhi/a6a8931498b5c7065c553f74178ad798 to your computer and use it in GitHub Desktop.
Remove Cleanup Obj and Bin folders powershell script
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