Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

temporary ie 1

Status
Not open for further replies.

mmosier

Technical User
Aug 5, 2001
70
US
I have been trying to get rid of temporary internet files. I go to find and type "*.tmp,~*.*" in C drive. I also go to internet through control panal and delete all files. even go to explore. Then if I go to "find" type the letter "a" and I get on adverage about 750 "Temporary internet files\content IE5\...". Same for rest of alphabet.In deleting I sometimes get "cannot delete index-access denied" , "system file...." or "This is a Read Only..." . I also get cookies, tmp and temp which I am cautious to delete since some are short for template it seems. Help
 
Bravo Sly979, great link.

Since 9x boots to DOS first, it is not too hard to automate better privacy.

My startup runs through a bunch of deltrees, which handles the IE problems. Outllook I have finally loaded just for tests. I'll have to look into that.

If you do some of these deltrees your system will be a little faster and more reliable.

You need to test these, as we have no IE and only recently let Outlook on systems.


Code:
@echo off
:-------------------------------------------
:Cleanup Windows Messes...
: Delete harmful (usually) Windows directories in case some fool has
: installed them
:  Your installation may need some of these changed or removed...

  deltree /y c:\temp
    md d:\temp
    set temp=D:\temp
    set tmp=D:\temp

: Your system may need one of these...

  deltree /y c:\windows\applic*
  deltree /y c:\windows\applog
  deltree /y c:\windows\cookies
  deltree /y c:\windows\favori*
  deltree /y c:\windows\history
  deltree /y c:\windows\java
  deltree /y c:\windows\recent
  deltree /y c:\windows\sendto
  deltree /y c:\windows\tasks
  deltree /y c:\windows\temp*
  deltree /y c:\windows\tempor~1
  deltree /y c:\windows\web


  deltree /y "c:\windows\internet logs"

and so forth.

 
Not totally clear on instructions jnicks. Does any one else think this is a good idea and how come I seem to be few to see this problem with temporary
 
Not totally clear on instructions jnicks. Does any one else think this is a good idea and how come I seem to be few to see this problem with temporary
 
Not totally clear on instructions jnicks. Does any one else think this is a good idea and how come I seem to be few to see this problem with temporary
 
Run disk cleanup and make sure temporary internet files (box)is checked.
 
The box is and was always checked, no help but thanks for trying! Honestly has anyone tried to search for "any letter" in find files and come up with a lot of "Temporary internet IE5" file, try it, I am curious, let me know.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top