Monday, April 30, 2007

Batch delete unwanted files
Might prove useful if you are asked to report on and then delete mp3, avi etc.

for /f "tokens=*" %x in ('dir *.bak,*.tmp,*.dmp /s /b /a-d') do @echo
Del "%x" >>deleteme.bat

More...

0 Comments:

Post a Comment

<< Home