Skip to content

Instantly share code, notes, and snippets.

@elinx
Created June 21, 2015 01: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 elinx/dc65cc2569ffea53551a to your computer and use it in GitHub Desktop.
Save elinx/dc65cc2569ffea53551a to your computer and use it in GitHub Desktop.
Clean Visual Studio projects
# using this script clean visual studio projects folder, save storage space
get-childitem -r -path D:\vsprojects -filter *Debug* | remove-item -force -recurse
get-childitem -r -path D:\vsprojects -filter *Release* | remove-item -force -recurse
get-childitem -r -path D:\vsprojects -filter *ipch* | remove-item -force -recurse
get-childitem -r -path D:\vsprojects -filter *.sdf | remove-item -force -recurse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment