Fastlane, Michael made a nice little cleaner for this situation. Create a .bat file, call it acklean.bat and copy inside this Code:
@echo off
del *.$$M /s
del *.bak /s
del *.$$w /s
del *.$$p /s
del OUIETERR.TXT /s


Put the .bat file in your directory and if executed will remove those files. The backup files are there for a reason though.


smile