Skip to content

Instantly share code, notes, and snippets.

@hyeomans
Created November 6, 2013 00:09
Show Gist options
  • Save hyeomans/7328640 to your computer and use it in GitHub Desktop.
Save hyeomans/7328640 to your computer and use it in GitHub Desktop.
Removing obj and bin folders
function remove_bin_obj_force {
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