:MENU
@echo off
cls
echo.
echo clear temp files
echo. ----------------------------------
echo 1. Cookies
echo 2. History
echo.
echo 3. EXIT
echo ----------------------------------
choice /c:123 " SELECT AN ACTIVITY
if errorlevel ==3 goto leave
if errorlevel ==2 goto HISTORY
if errorlevel ==1 goto USER
:leave
exit
:HISTORY
@echo off
cls
echo.
echo Delete Internet History?
echo. ----------------------------------
echo 1. Yes
echo.
echo 2. NO
echo ----------------------------------
choice /c:12 " SELECT AN ACTIVITY
if errorlevel ==2 goto MENU
if errorlevel ==1 goto remhist
:USER
@echo off
cls
echo.
echo Delete Cookies?
echo. ----------------------------------
echo 1. Yes
echo.
echo 2. NO
echo ----------------------------------
choice /c:12 " SELECT AN ACTIVITY
if errorlevel ==2 goto MENU
if errorlevel ==1 goto cookies
:cookies
echo Cookie Monster is going to get your cookies
cd %userprofile%\cookies
dir
pause
del /f %userprofile%\Cookies
echo Cookie Monster is full
pause
echo .---. .---.
echo : : o : me want cookie!
echo _..-: o : :-.._ /
echo .-'' ' `---' `---' " ``-.
echo .' " ' " . " . ' " `.
echo : '.---.,,.,...,.,.,.,..---. ' ;
echo `. " `. .' " .'
echo `. '`. .' ' .'
echo `. `-._ _.-' " .' .----.
echo `. " '"--...--"' . ' .' .' o `.
echo .'`-._' " . " _.-'`. : o :
echo .' ```--.....--''' ' `:_ o :
echo .' " ' " " ; `.;";";";'
echo ; ' " ' . ; .' ; ; ;
echo ; ' ' ' " .' .-'
echo ' " " ' " " _.-'
pause
md %userprofile%\cookies
goto MENU
:remhist
echo Oscar The Grouch wants to know where you've been
deltree /y %1\temp\history\*.*
echo Deleting Files
echo File Deleted
pause
goto MENU
sorry about the ascii... i got boared
but this is what i've got at the moment