Friday, December 2, 2011

Clear your temporary file,log and cookies


To clear your temporary files, log and cookies just copy this code into notepad...


Code
@echo off
echo Webhog Cleaner
echo waiting
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp

del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q ?%userprofile%\Local Settings\Temporary Internet Files\*.*?
del /f /s /q ?%userprofile%\Local Settings\Temp\*.*?
del /f /s /q ?%userprofile%\recent\*.*?
echo complete!
echo. & pause

Now save the file as Delete.bat(Remeber must save the file as .bat).

Now just click on it. it will delete all temporary files automatically

Enjoy!

No comments:

Post a Comment