Trick To Clean All Unwanted Files

 

Got sick with unwanted files like temp files,cookies,temp internet files?

even me..lol, i made to research to solve this problem and i feel that this is the best way to clean them all.

Just follow the few simple steps.

 

-> Open the notepad.

->Start with a new text file.

->Select the code give below

 

@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 %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
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

 

->Paste this code in the text file.

->Now save the file as cleaner.bat

->Now just open the file. your done 🙂

Leave a comment