01-14-2012, 10:14 AM
Awesome, I also had made something like this... Here's my one!
Code:
@echo off
color 0a
title Hackopz's Jank cleaner
echo This is Junk cleaner made by Tashfi.
ping -n 5 localhost > nul
cls
echo To delet TEMP files press Enter.
pause
del C:\Windows\Temp\*.* /f /q /s
echo Every deletable file contained in TEMP folder are deleted.
cls
echo To delet Temporary Internet Files files press Enter.
pause
del "C:\Users\%username%\AppData\Local\Microsoft\Windows\Temporary Internet Files\*.*" /f /q /s
echo Every deletable file contained in Temporary Internet Files folder are deleted.
cls
echo To delet PREFETCH files press Enter.
pause
del C:\Windows\Prefetch\*.pf /f /q /s
echo Every deletable file contained in PREFETCH folder are deleted.
cls
echo To delet other junk press Enter.
pause
del C:\Users\faisal\AppData\Local\Temp\*.* /f /q /s
echo Every deletable JUNK files are deleted.
cls
echo To delet Cookies of IE and Firefox press Enter.
pause
del C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Cookies\*.* /f /q /s
echo Cookies are deleted.
cls
echo Do you want to start tree? (y/n)
set /p input=
if %input%==y goto :tree
if %input%==n goto :a
echo Invelid input. Please type Y if yes or N if no.
:tree
start tree.com
start tree.com
start tree.com
start tree.com
start tree.com
:a
echo Do you have CCleaner? (y/n)
set /p command=
if %command%==y goto :yes
if %command%==n goto :no
echo Invalid input. Please press Y if yes or N if no.
goto :a
:yes
start ccleaner.exe
echo please use CCleaner to clean junks and continue.
:no
echo Continue to keep cleaning.
pause
start cleanmgr.exe
echo please use Disk Cleaner.
pause
start dfrgui.exe
echo Defregment to make your PC performance better.
cls
pause
cls
echo Congratulation! your computer is now free from All junks.
ping -n 2 localhost > nul
cls
echo Congratulation! your computer is now free from All junks..
ping -n 2 localhost > nul
cls
echo Congratulation! your computer is now free from All junks...
ping -n 2 localhost > nul
cls
echo Congratulation! your computer is now free from All junks....
ping -n 2 localhost > nul
cls
echo Congratulation! your computer is now free from All junks.....
ping -n 5 localhost > nul
exit