Skip to content

Instantly share code, notes, and snippets.

View JeepNL's full-sized avatar
💭
#RIPTwitter Hello #Mastodon

Jaap JeepNL

💭
#RIPTwitter Hello #Mastodon
View GitHub Profile
@xtrmstep
xtrmstep / cleanup-objbin.ps1
Created March 29, 2016 09:02
PowerShell script to delete all \bin and \obj folders
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }