Last active
October 17, 2018 13:49
-
-
Save hlaueriksson/ec683b9d3ec81f97551d3bd8f5f90137 to your computer and use it in GitHub Desktop.
Delete bin/obj folders with PowerShell (Admin)
This file contains 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
Get-ChildItem -inc bin,obj -rec | Remove-Item -rec -force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment