Friday, December 24, 2010

Clean your Non Useful Files In Windows!!!!

Hi to every one.


To day i am going to show to make a notepad Ccleaner.we can make
amazing tricks with notepad.
As well as the better speed of windows we need to clean the Non
useful files like some extensions of files which are Not useful in windows....*.tmp,*.log,*.chk,*old,*bak,*._mp,*.gid and Temporary Internet
Files etc.....

The basic program that most of the cleaners uses...I just describing


with you that How it works....
Making Of Cleaner...In steps:

Step1:Open the Notepad.
Step2:Paste this code in the notepad:
Code:
Select all
@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

3)now notepad "save as" cleaner.bat(don't forget)
and see what happens.