Location: Mail List

Ads

Skyscraper

The GPTalk Mailing List

The GPTALK mailing list is where you can send and receive email related to Windows Group Policy. You must subscribe to the list to send and receive mail from the list. The purpose of the list is to provide a forum for asking and answering technical questions related to Group Policy. Any question is fair game as long as it is related to Windows Group Policy.  The Archives for this list can be found on this page.

 

List Posts

Subject: [gptalk] Question about deleting Cookies/Temp Internet Files
Prev Next
You are not authorized to post a reply.

AuthorMessages
mdzikowskiUser is Offline

Posts:68

02/08/2010 7:47 PM  
Anyone have a GPO that will do this?

Del Cookies/Temp Internet Files

==============================================================================
CONFIDENTIALITY NOTICE: This email contains information from the sender that
may be CONFIDENTIAL, LEGALLY PRIVILEGED, PROPRIETARY or otherwise protected
from disclosure. This email is intended for use only by the person or entity
to whom it is addressed. If you are not the intended recipient, any use,
disclosure, copying, distribution, printing, or any action taken in reliance
on the contents of this email, is strictly prohibited. If you received this
email in error, please contact the sending party by reply email, delete the
email from your computer system and shred any paper copies.

Note to Patients: There are a number of risks you should consider before using
e-mail to communicate with us. See our Privacy Policy and Henry Ford My Health
at www.henryford.com for more detailed information. If you do not believe that
our policy gives you the privacy and security protection you need, do not send
e-mail or Internet communications to us.
==============================================================================

AndrewMcHaleUser is Offline

Posts:44

02/12/2010 4:49 PM  
Hi Michael,



Don't know about the cookies but there is this setting for Temp files



"User Conf/Policies/Admin Temps/Windows Components/Internet
Explorer/Internet Control Panel/Advanced Page/Empty Temporary Internet
Files folder when browser is closed"



Not sure if it only works with a particular IE version or all of them.



Hope it helps



Andrew





From: Dzikowski, Michael [mailto:MDZIKOW1@hfhs.org]
Sent: 08 February 2010 19:46
To: gptalk@lists.gpoguy.com
Subject: [gptalk] Question about deleting Cookies/Temp Internet Files



Anyone have a GPO that will do this?



Del Cookies/Temp Internet Files

========================================================================
======
CONFIDENTIALITY NOTICE: This email contains information from the sender
that
may be CONFIDENTIAL, LEGALLY PRIVILEGED, PROPRIETARY or otherwise
protected
from disclosure. This email is intended for use only by the person or
entity
to whom it is addressed. If you are not the intended recipient, any use,

disclosure, copying, distribution, printing, or any action taken in
reliance
on the contents of this email, is strictly prohibited. If you received
this
email in error, please contact the sending party by reply email, delete
the
email from your computer system and shred any paper copies.

Note to Patients: There are a number of risks you should consider before
using
e-mail to communicate with us. See our Privacy Policy and Henry Ford My
Health
at www.henryford.com for more detailed information. If you do not
believe that
our policy gives you the privacy and security protection you need, do
not send
e-mail or Internet communications to us.
========================================================================
======

rwalker76User is Offline

Posts:8

02/12/2010 5:20 PM  
We use a logout script for this on any public access PCs. It will work with IE7 or later. Not sure about IE6.

@ECHO OFF
ECHO Deleting current user's Temporary Files, Cookies, History, Form Data and Stored Passwords
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
ECHO Done!
CLS


From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Dzikowski, Michael
Sent: 08 February 2010 19:46
To: gptalk@lists.gpoguy.com
Subject: [gptalk] Question about deleting Cookies/Temp Internet Files

Anyone have a GPO that will do this?

Del Cookies/Temp Internet Files

==============================================================================

CONFIDENTIALITY NOTICE: This email contains information from the sender that

may be CONFIDENTIAL, LEGALLY PRIVILEGED, PROPRIETARY or otherwise protected

from disclosure. This email is intended for use only by the person or entity

to whom it is addressed. If you are not the intended recipient, any use,

disclosure, copying, distribution, printing, or any action taken in reliance

on the contents of this email, is strictly prohibited. If you received this

email in error, please contact the sending party by reply email, delete the

email from your computer system and shred any paper copies.



Note to Patients: There are a number of risks you should consider before using

e-mail to communicate with us. See our Privacy Policy and Henry Ford My Health

at www.henryford.com for more detailed information. If you do not believe that

our policy gives you the privacy and security protection you need, do not send

e-mail or Internet communications to us.

==============================================================================

________________________________
This e-mail message has been scanned for Viruses and Content
________________________________

######################################################################################

Warning

Please note that whilst this e-mail and any attachments originate from Calderdale MBC,
the views expressed may not necessarily represent the views of Calderdale MBC.

This e-mail and any attachments may contain information that is privileged,
confidential or otherwise protected from disclosure.
They must not be used by, or copied or disclosed to persons other than the intended recipient.
Any liability (in negligence or otherwise) arising from any third party acting, or refraining from acting,
on any information contained in this e-mail is excluded.
If you have received this e-mail in error please inform the sender and delete the e-mail.

E-mail can never be 100% secure. Please bear this in mind and carry out such virus and other checks, as you consider appropriate.
Calderdale MBC accepts no responsibility in this regard.

Copyright of this e-mail and any attachments belongs to Calderdale MBC.

Should you communicate with anyone at Calderdale MBC by e-mail, you consent to the
Council monitoring, recording and reading any such correspondence.

######################################################################################

jeromelcruzUser is Offline

Posts:88

02/12/2010 5:41 PM  
That's cool...

Question though: Wouldn't a single command "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 315" perform the same set of operations?
Where 315 was the sum of the individual 'flag' settings.

Jerry Cruz | Group Policies Product Manager | Windows Server and Infrastructure Architecture | Boeing IT

From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Richard Walker
Sent: Friday, February 12, 2010 9:18 AM
To: gptalk@lists.gpoguy.com
Subject: RE: [gptalk] Question about deleting Cookies/Temp Internet Files

We use a logout script for this on any public access PCs. It will work with IE7 or later. Not sure about IE6.

@ECHO OFF
ECHO Deleting current user's Temporary Files, Cookies, History, Form Data and Stored Passwords
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
ECHO Done!
CLS


From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Dzikowski, Michael
Sent: 08 February 2010 19:46
To: gptalk@lists.gpoguy.com
Subject: [gptalk] Question about deleting Cookies/Temp Internet Files

Anyone have a GPO that will do this?

Del Cookies/Temp Internet Files


rwalker76User is Offline

Posts:8

02/15/2010 10:36 AM  
Thanks Jerry,

I didn't realize that would work. If I need to set up something similar again I'll try using a single 315 command. For what's already in place though I think I'll stick with the "if it ain't broke..." philosophy!

From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Cruz, Jerome L
Sent: 12 February 2010 17:41
To: gptalk@lists.gpoguy.com
Subject: RE: [gptalk] Question about deleting Cookies/Temp Internet Files

That's cool...

Question though: Wouldn't a single command "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 315" perform the same set of operations?
Where 315 was the sum of the individual 'flag' settings.

Jerry Cruz | Group Policies Product Manager | Windows Server and Infrastructure Architecture | Boeing IT

From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Richard Walker
Sent: Friday, February 12, 2010 9:18 AM
To: gptalk@lists.gpoguy.com
Subject: RE: [gptalk] Question about deleting Cookies/Temp Internet Files

We use a logout script for this on any public access PCs. It will work with IE7 or later. Not sure about IE6.

@ECHO OFF
ECHO Deleting current user's Temporary Files, Cookies, History, Form Data and Stored Passwords
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
ECHO Done!
CLS


From: gptalk-owner@lists.gpoguy.com [mailto:gptalk-owner@lists.gpoguy.com] On Behalf Of Dzikowski, Michael
Sent: 08 February 2010 19:46
To: gptalk@lists.gpoguy.com
Subject: [gptalk] Question about deleting Cookies/Temp Internet Files

Anyone have a GPO that will do this?

Del Cookies/Temp Internet Files

________________________________

This email has been checked by the Council's content checker

________________________________

######################################################################################

Warning

Please note that whilst this e-mail and any attachments originate from Calderdale MBC,
the views expressed may not necessarily represent the views of Calderdale MBC.

This e-mail and any attachments may contain information that is privileged,
confidential or otherwise protected from disclosure.
They must not be used by, or copied or disclosed to persons other than the intended recipient.
Any liability (in negligence or otherwise) arising from any third party acting, or refraining from acting,
on any information contained in this e-mail is excluded.
If you have received this e-mail in error please inform the sender and delete the e-mail.

E-mail can never be 100% secure. Please bear this in mind and carry out such virus and other checks, as you consider appropriate.
Calderdale MBC accepts no responsibility in this regard.

Copyright of this e-mail and any attachments belongs to Calderdale MBC.

Should you communicate with anyone at Calderdale MBC by e-mail, you consent to the
Council monitoring, recording and reading any such correspondence.

######################################################################################

You are not authorized to post a reply.
Forums >GPTalk >GPTalk Mailing List > [gptalk] Question about deleting Cookies/Temp Internet Files



ActiveForums 3.7

Members

MembershipMembership:
Latest New UserLatest:wetling
New TodayNew Today:1
New YesterdayNew Yesterday:1
User CountOverall:898

People OnlinePeople Online:
VisitorsVisitors:0
MembersMembers:0
TotalTotal:0

Online NowOnline Now:

Ads

Banner Inv
Copyright 2009 by GPOGUY.COM
Terms Of Use