deleteing IE history

G

Guest

del "C:\Documents and Settings\Admin\Cookies\*" /Q /F /S
del "C:\Documents and Settings\Admin\Local Settings\Temporary Internet Files\*" /Q /F /A:H /S
del "C:\Documents and Settings\Admin\Local Settings\Temp\*" /Q /F /S
del "C:\Documents and Settings\Admin\Local Settings\History\*" /Q /F /S
del "C:\WINDOWS\Temp\Temporary Internet Files\Content.IE5\*" /Q /F /S

Those are the Command Prompt I use in a BAT file.. It only works for deleting all files in Cookies folder. but not other folder..
And and other question how do I set it run as I start up my pc and when it restart(shutdown) my pc?
I know there is a command for this.. i seen it action before..

any one know why?
 
W

Wesley Vogel

Hy;
Here's a sample of run.bat
================
@echo off
echo This file will remove Index.dat files. The Cookies, Temporary Internet
Files, History, and Temp folders will be cleared as per user Settings.
echo
echo Please note, use of this file is AT YOUR OWN RISK, Ur I.T. Mate Group
will NOT be held liable for any problems caused due to the use of this file
or any part of the Index.dat Suite software


del C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\History\History.IE5\index.dat
del C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\TEMPOR~1\Content.IE5\index.dat
del C:\DOCUME~1\WESLEY~1.VOG\UserData\index.dat
del C:\DOCUME~1\WESLEY~1.VOG\Cookies\index.dat
cd C:\DOCUME~1\WESLEY~1.VOG\Cookies\
rd /s /q C:\DOCUME~1\WESLEY~1.VOG\Cookies\
cd C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\History\
rd /s /q C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\History\
cd C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\Temp\
rd /s /q C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\Temp\
cd C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\TEMPOR~1\
rd /s /q C:\DOCUME~1\WESLEY~1.VOG\LOCALS~1\TEMPOR~1\
exit
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top