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...
The Joys of IT
Batch delete unwanted files