Skip to content

Instantly share code, notes, and snippets.

@afmicc
Created September 21, 2018 01:46
Show Gist options
  • Save afmicc/3f116e1493c74e64980d5e586b18bedb to your computer and use it in GitHub Desktop.
Save afmicc/3f116e1493c74e64980d5e586b18bedb to your computer and use it in GitHub Desktop.
This script delete all bin, obj, node_modules, and packages folders from a solution.
Get-ChildItem .\ -include bin,obj,node_modules,packages -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