Clean Up Tool Batch (.bat) File for Windows
This script will clean the cookies and private information in your computer. I’ve been using this for about five years now.
This will not clean the threats (spyware) from your computer, I strongly recommend using this software; www.noadware.com/product. Download and scan your computer for free. I have not had any problems with them, their tech support is outstanding.
//Start to copy here//
@echo off
cleanmgr /sageset:1
cleanmgr /sagerun:1
TASKKILL /F /IM explorer.exe
cd /d c:\
attrib +a -s -h -r thumbs.db /s
del /s /f thumbs.db
attrib +a -s -h -r *.tmp.log /s
del /s /f *.tmp.log
attrib +a -s -h -r “%userprofile%\Application Data\Microsoft\Office\Recent\*.*”
del /f /q “%userprofile%\Application Data\Microsoft\Office\Recent\*.*”
attrib +a -s -h -r *.gid /s
del /s /f *.gid
attrib +a -s -h -r *.fts /s
del /s /f *.fts
attrib +a -s -h -r *.cnt /s
del /s /f *.cnt
attrib +a -s -h -r *.old /s
del /s /f *.old
attrib +a -s -h -r *.diz /s
del /s /f *.diz
attrib +a -s -h -r *.bak /s
del /s /f *.bak
attrib +a -s -h -r *.tmp /s
del /s /f *.tmp
attrib +a -s -h -r *.chk /s
del /s /f *.chk
attrib +a -s -h -r *.dmp /s
del /s /f *.dmp
attrib +a -s -h -r *.00? /s
del /s /f *.00?
attrib +a -s -h -r index.dat /s
del /s /f index.dat
attrib +a -s -h -r fw*log.txt /s
del /s /f fw*log.txt
attrib +a -s -h -r zalog*.txt /s
del /s /f zalog*.txt
attrib +a -s -h -r backup*.rdb /s
del /s /f backup*.rdb
@exit
//End copy here//
- Copy the code above
- Open notepad
- Paste
- Save As
- Cleanup.bat
- Save

















Leave a Reply
You must be logged in to post a comment.