Pages

Friday, October 14, 2011

Delete all un-necessary files from your PC :


We can delete all of our recent, prefetch and temp files from our pc by using a simple command. Manually we can also do this from RUN command but that is little bit boring and time wasting too. For doing this job easily open a new text doccoment in your desktop, copy the given command and finally save that as .bat name format. Such as : clean.bat or erase.bat


The command is :


cd\
COLOR 4A
ECHO DELETE ALL TEMP FILES
C:
CD %TEMP%
RMDIR /S /Q %TEMP%
CD C:\WINDOWS\TEMP
RMDIR /S /Q C:\WINDOWS\TEMP
CD C:\WINDOWS\Prefetch
RMDIR /S /Q C:\WINDOWS\Prefetch
CD %TEMP%
CD..
CD..
CD Recent
Del /s /q *.*

 
Now you will find a shortcut in your  desktop. Double click on that and enjoy . . . 

No comments:

Post a Comment