Answers for "delete obj and bin"

1

delete obj and bin

Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
Posted by: Guest on October-28-2021

Browse Popular Code Answers by Language