:: :: This batch file removes all Thumbs.db files within the folder :: and subfolders where it is run :: :: :: http://www.uzbmaster.com/shingil/2009/11/03/batch-remove-svn-folders-and-thumbs-db-files/ :: @ECHO OFF echo. Deleting Thumbs.db files... FOR /F "tokens=*" %%G IN ('DIR /B /A /S Thumbs.db') DO DEL /S /Q "%%G" echo. DONE. Pause EXIT