Deleting Temporary Internet Files

  • Thread starter Thread starter Levent
  • Start date Start date
L

Levent

I want to delete all the cookies in a W2K Professional
operating system. I tried to use a simple batch program
below, but I could not succeed. Can you help me? Regards.

Echo off
cd\
cd %userprofile%\local settings\temporary internet files
del *.*
 
I want to delete all the cookies in a W2K Professional
operating system. I tried to use a simple batch program
below, but I could not succeed. Can you help me? Regards.

Echo off
cd\
cd %userprofile%\local settings\temporary internet files
del *.*

Echo off
cd /d "%userprofile%\local settings\temporary internet files"
del /q *.*


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
I've been working on a new freeware utility that will do this. It's 95%
complete, maybe you would want to help me beta test?
 
I want to delete all the cookies in a W2K Professional
operating system. I tried to use a simple batch program
below, but I could not succeed. Can you help me? Regards.

Echo off
cd\
cd %userprofile%\local settings\temporary internet files
del *.*

I will make you really dangerous -- do not use this command
unless you have a backup and UNDERSTAND IT -- it is
YOUR responsibility:

@echo rd /s /q "%userprofile%\local settings\temporary internet files"
md "%userprofile%\local settings\temporary internet files"

In fact, I put that @echo in there so you will have to edit it before
trying it <grin>

Why not just use the menu in IE Tools\Internet Options ???
 
Echo off
cd /d "%userprofile%\local settings\temporary internet files"
del /q *.*

Both of these are dangerous. What if the "cd" command fails?
Also, there is no guarantee that the temporary Internet files are
stored there.
 
Back
Top