PC Review


Reply
Thread Tools Rate Thread

delete IE temporary files

 
 
Crios
Guest
Posts: n/a
 
      26th May 2006
How can I delete IE temporary files from several users/several sessions in
one move. (I have admin rights)?

Thanx
Crios


 
Reply With Quote
 
 
 
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      26th May 2006

"Crios" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How can I delete IE temporary files from several users/several sessions in
> one move. (I have admin rights)?
>
> Thanx
> Crios
>
>


You can create a batch file that deletes & recreates
the hidden folder content.ie5 in each user's profile
folder.


 
Reply With Quote
 
Crios
Guest
Posts: n/a
 
      26th May 2006
I'm afraid i'm not that good !!

"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> "Crios" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> How can I delete IE temporary files from several users/several sessions
>> in
>> one move. (I have admin rights)?
>>
>> Thanx
>> Crios
>>
>>

>
> You can create a batch file that deletes & recreates
> the hidden folder content.ie5 in each user's profile
> folder.
>
>



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      26th May 2006
Please elaborate.


"Crios" <(E-Mail Removed)> wrote in message
news:OIQ%(E-Mail Removed)...
> I'm afraid i'm not that good !!
>
> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> >
> > "Crios" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> >> How can I delete IE temporary files from several users/several sessions
> >> in
> >> one move. (I have admin rights)?
> >>
> >> Thanx
> >> Crios
> >>
> >>

> >
> > You can create a batch file that deletes & recreates
> > the hidden folder content.ie5 in each user's profile
> > folder.
> >
> >

>
>



 
Reply With Quote
 
Crios
Guest
Posts: n/a
 
      26th May 2006
I don't know how to create such a batch file.

"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Please elaborate.
>
>
> "Crios" <(E-Mail Removed)> wrote in message
> news:OIQ%(E-Mail Removed)...
>> I'm afraid i'm not that good !!
>>
>> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> >
>> > "Crios" <(E-Mail Removed)> wrote in message
>> > news:(E-Mail Removed)...
>> >> How can I delete IE temporary files from several users/several
>> >> sessions
>> >> in
>> >> one move. (I have admin rights)?
>> >>
>> >> Thanx
>> >> Crios
>> >>
>> >>
>> >
>> > You can create a batch file that deletes & recreates
>> > the hidden folder content.ie5 in each user's profile
>> > folder.
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      26th May 2006
Try this:
- Click Start / Run / notepad c:\Winnt\Cleanup.bat
- Place these lines inside:
Line1 @echo off
Line2 echo Deleting all temporary Internet files.
Line3 for %%a in (Tom Dick Harry) do (
Line4 echo Deleting %%a . . .
Line5 rd /s /q "C:\Documents and Settings\%%a\Local Settings\Temporary
Internet Files\content.ie5"
Line6 md "C:\Documents and Settings\%%a\Local Settings\Temporary Internet
Files\Content.ie5"
Line7 )
Line8 echo . . . done!
Line9 echo.
Line10 pause
Omit "Line1" "Line2" etc. . I placed it there so that you
can see where each line starts and ends. Use actual
logon names instead of Tom, Dick, Harry.

- Create a shortcut on your desktop that points to
c:\WinNT\Cleanup.bat


"Crios" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> I don't know how to create such a batch file.
>
> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > Please elaborate.
> >
> >
> > "Crios" <(E-Mail Removed)> wrote in message
> > news:OIQ%(E-Mail Removed)...
> >> I'm afraid i'm not that good !!
> >>
> >> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> >
> >> > "Crios" <(E-Mail Removed)> wrote in message
> >> > news:(E-Mail Removed)...
> >> >> How can I delete IE temporary files from several users/several
> >> >> sessions
> >> >> in
> >> >> one move. (I have admin rights)?
> >> >>
> >> >> Thanx
> >> >> Crios
> >> >>
> >> >>
> >> >
> >> > You can create a batch file that deletes & recreates
> >> > the hidden folder content.ie5 in each user's profile
> >> > folder.
> >> >
> >> >
> >>
> >>

> >
> >

>
>



 
Reply With Quote
 
Gary Smith
Guest
Posts: n/a
 
      27th May 2006
I wouldn't bother to recreate Content.IE5. IE will do that when it's
needed,


"Pegasus \(MVP\)" <(E-Mail Removed)> wrote:
> Try this:
> - Click Start / Run / notepad c:\Winnt\Cleanup.bat
> - Place these lines inside:
> Line1 @echo off
> Line2 echo Deleting all temporary Internet files.
> Line3 for %%a in (Tom Dick Harry) do (
> Line4 echo Deleting %%a . . .
> Line5 rd /s /q "C:\Documents and Settings\%%a\Local Settings\Temporary
> Internet Files\content.ie5"
> Line6 md "C:\Documents and Settings\%%a\Local Settings\Temporary Internet
> Files\Content.ie5"
> Line7 )
> Line8 echo . . . done!
> Line9 echo.
> Line10 pause
> Omit "Line1" "Line2" etc. . I placed it there so that you
> can see where each line starts and ends. Use actual
> logon names instead of Tom, Dick, Harry.


> - Create a shortcut on your desktop that points to
> c:\WinNT\Cleanup.bat



> "Crios" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> > I don't know how to create such a batch file.
> >
> > "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> > news:%(E-Mail Removed)...
> > > Please elaborate.
> > >
> > >
> > > "Crios" <(E-Mail Removed)> wrote in message
> > > news:OIQ%(E-Mail Removed)...
> > >> I'm afraid i'm not that good !!
> > >>
> > >> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> > >> news:(E-Mail Removed)...
> > >> >
> > >> > "Crios" <(E-Mail Removed)> wrote in message
> > >> > news:(E-Mail Removed)...
> > >> >> How can I delete IE temporary files from several users/several
> > >> >> sessions
> > >> >> in
> > >> >> one move. (I have admin rights)?
> > >> >>
> > >> >> Thanx
> > >> >> Crios
> > >> >>
> > >> >>
> > >> >
> > >> > You can create a batch file that deletes & recreates
> > >> > the hidden folder content.ie5 in each user's profile
> > >> > folder.
> > >> >
> > >> >
> > >>
> > >>
> > >
> > >

> >
> >




--
Gary L. Smith
Columbus, Ohio
 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      27th May 2006
Thanks for the tip.


"Gary Smith" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> I wouldn't bother to recreate Content.IE5. IE will do that when it's
> needed,
>
>
> "Pegasus \(MVP\)" <(E-Mail Removed)> wrote:
> > Try this:
> > - Click Start / Run / notepad c:\Winnt\Cleanup.bat
> > - Place these lines inside:
> > Line1 @echo off
> > Line2 echo Deleting all temporary Internet files.
> > Line3 for %%a in (Tom Dick Harry) do (
> > Line4 echo Deleting %%a . . .
> > Line5 rd /s /q "C:\Documents and Settings\%%a\Local Settings\Temporary
> > Internet Files\content.ie5"
> > Line6 md "C:\Documents and Settings\%%a\Local Settings\Temporary

Internet
> > Files\Content.ie5"
> > Line7 )
> > Line8 echo . . . done!
> > Line9 echo.
> > Line10 pause
> > Omit "Line1" "Line2" etc. . I placed it there so that you
> > can see where each line starts and ends. Use actual
> > logon names instead of Tom, Dick, Harry.

>
> > - Create a shortcut on your desktop that points to
> > c:\WinNT\Cleanup.bat

>
>
> > "Crios" <(E-Mail Removed)> wrote in message
> > news:%(E-Mail Removed)...
> > > I don't know how to create such a batch file.
> > >
> > > "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> > > news:%(E-Mail Removed)...
> > > > Please elaborate.
> > > >
> > > >
> > > > "Crios" <(E-Mail Removed)> wrote in message
> > > > news:OIQ%(E-Mail Removed)...
> > > >> I'm afraid i'm not that good !!
> > > >>
> > > >> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> > > >> news:(E-Mail Removed)...
> > > >> >
> > > >> > "Crios" <(E-Mail Removed)> wrote in message
> > > >> > news:(E-Mail Removed)...
> > > >> >> How can I delete IE temporary files from several users/several
> > > >> >> sessions
> > > >> >> in
> > > >> >> one move. (I have admin rights)?
> > > >> >>
> > > >> >> Thanx
> > > >> >> Crios
> > > >> >>
> > > >> >>
> > > >> >
> > > >> > You can create a batch file that deletes & recreates
> > > >> > the hidden folder content.ie5 in each user's profile
> > > >> > folder.
> > > >> >
> > > >> >
> > > >>
> > > >>
> > > >
> > > >
> > >
> > >

>
>
>
> --
> Gary L. Smith
> Columbus, Ohio



 
Reply With Quote
 
Rick Chauvin
Guest
Posts: n/a
 
      27th May 2006
> "Gary Smith" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> I wouldn't bother to recreate Content.IE5. IE will do that when it's
>> needed,


"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)
> Thanks for the tip.



<g> ..lol even..


Rick



 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      27th May 2006
> <g> ..lol even..
>
>
> Rick


???


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Posted some weeks ago--still can't delete files in Temporary Internet Files DaffyD® Microsoft Windows 2000 5 8th Jun 2009 11:39 PM
Re: Posted some weeks ago--still can't delete files in Temporary Internet Files Pegasus [MVP] Microsoft Windows 2000 0 8th Jun 2009 08:20 PM
How not delete files such as Internet Explorer 8 Temporary files? JC Windows XP General 4 20th May 2009 11:57 PM
Can't Delete Temp\Temporary Internet Files\ Files Larry R Harrison Jr Windows XP Internet Explorer 4 8th Feb 2005 04:32 PM
IWebBrowser2 ActiveX , Does not releases temporary internet files when Closed, despite delete Temporary option of Browser (Internet Explorer)is Selected. =?Utf-8?B?VlpVbWFy?= Microsoft VC .NET 0 21st Feb 2004 07:31 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:38 PM.