powershell Remove all /bin and /obj in a folderby tabtuon Posted on February 14, 2023 Get-ChildItem $currentFolder -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }