Thursday, November 11, 2010

Clean Up - XP junk

Clean your system TEMP, RECENT, HISTORY, TEMPORARY INTERNET FILES, & PREFETCH files thorugh a simple Batch File.

Copy this Code to Notepad and save it as a batch file, " Cleanup.bat".

Note: Alaways run the file from system desktop.

Code:
@echo Off
@Title Ghost Nt Cleaning System File
@
@cd\
@
Echo. Cleaning Prefetch Files
@cd %windir%\prefetch
@del /s /q *.* |echo. >nul
@cd\
Echo. Cleaning Temprory Files
@cd %USERPROFILE%\Local Settings\Temporary Internet Files
@del /f /s /q /a s *.* |echo. >nul
@cd..
@rd /s /q Temp |echo. >nul
@rd /s /q History |echo. >nul
@@MD Temp
@cd\
@del /s /q *.tmp
@
@cd %USERPROFILE%\Recent
@del /s /q *.* |echo. >nul
Echo. Please Wait More For Last Cleanup
@del /s /q *.chk |echo. >nul
@
Echo. Cleanup Sucessfull

Enjoy... :)

No comments:

Post a Comment