Useful Windows Batch Commands

Delete all .svn subdirectories (from stackoverflow)

FOR /d /r . %d IN (.svn) DO @IF EXIST "%d" rd /s /q "%d"