Skip to content

Instantly share code, notes, and snippets.

@ChrisMoney
Last active August 22, 2019 14:20
Show Gist options
  • Save ChrisMoney/df0c9e84c138296568721d68dc9f795a to your computer and use it in GitHub Desktop.
Save ChrisMoney/df0c9e84c138296568721d68dc9f795a to your computer and use it in GitHub Desktop.
Delete Bin & Object folders on Windows
Remove-Item -path C:\GitHub\Platform\src\VCU.Data\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Portable\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Portable\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.API\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.API\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.ApiAdmin\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.ApiAdmin\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.DAL\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.DAL\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices.DTOs.API\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices.DTOs.API\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices.DTOs.DAL\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\VCU.Data.Webservices.DTOs.DAL\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\mobile.shared\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\mobile.shared\obj -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\mobile.pcl\bin -ErrorAction SilentlyContinue -Recurse -Force
Remove-Item -path C:\GitHub\Platform\src\mobile.pcl\obj -ErrorAction SilentlyContinue -Recurse -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment