Thread: quick question
View Single Post
Old 01-07-2005, 01:54 PM   #13 (permalink)
Roshi229
 
Ultra Techie

Join Date: Oct 2004

Posts: 600

Roshi229

Send a message via AIM to Roshi229 Send a message via Yahoo to Roshi229
Default

: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
__________________
http://www.kbdigisol.com

<form action=\"http://www.srsyo.org/tfsearch.php\" method=\"get\">
<input type=\"text\" name=\"search\"> <input type=\"submit\" name=\"submit\" value=\"Search first, ask later!\"></form>
powered by emily .
Roshi229 is offline