Last active
September 25, 2017 07:44
-
-
Save mishrsud/48a191b86f92f044e1d4eb1e68635e49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run this from the directory that contains all project directories underneath | |
Get-ChildItem -Recurse | where { $_.Name -eq "bin" -or $_.Name -eq "obj" } | Remove-Item -Recurse | |
# If you really know what you're doing | |
Get-ChildItem -Recurse | where { $_.Name -eq "bin" -or $_.Name -eq "obj" } | Remove-Item -Recurse -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment