Helping people with computers... one answer at a time.
Deleting cookies is an easy task. Whether it's absolutely necessary or not is another matter.
How do I delete cookies? And just what are cookies, anyway?
•
Cookies themselves typically aren't as evil as most stories might have you believe. They're nothing more than some information a web site can save on your computer that the same web site can pick up again the next time you return. That's it. That's a cookie.
It's what some sites use cookies for that has some people concerned and why you might care about things like deleting cookies, and perhaps even looking inside of them.
•
Cookies can be used for many things. The simplest case is remembering who you are. When you visit a site like Amazon.com and log in, Amazon might place a cookie on your machine that contains your account name, and the fact that you're logged in. When you come back a day later Amazon.com picks up the cookie and sees who you are and that you had successfully logged in the day before.
Privacy concerns typically arise from cookies used by embedded advertising or other content on web sites; sometimes called "third party" cookies. Since the ads are typically served up from some other website, they can drop a cookie of their own. Advertisers can then keep track of how often you visit which sites they have their advertising on.
Now before the paranoia kicks in, let's be clear about something - they don't care about you specifically. Sorry, but you're just not that important. The sheer volume of data alone makes tracking any one individual a difficult task. What's typically interesting is aggregate data: the data that says things like X percent of the visitors to this website also visit that website.
That's not to say that cookies can't be misused; it's just that it's typically a lot more work than it's worth.
You can see what cookies you have and what they contain, but it's typically not particularly interesting. In Internet Explorer, hit Tools, Internet Options, the General tab, underneath Temporary Internet Files click on Settings. In the resulting dialog click on View Files. That'll bring up a list of all all temporary files, including cookies. I typically click on the Name column header to sort by name, and then scroll down to the point where the name begins with "Cookie:". There they are.
Another approach is to download a Cookie viewing program to make things a little more readable. I've used Cookie Viewer from KarenWare.
In either case, if you look at the contents of a cookie, they're typically very obscure. It's common practice to simply store a unique identifier of some sort and not much more. That ID usually makes sense only to the website that put it there, and effectively makes the cookie useless to others even if they could get at it.
Deleting cookies is easy. You probably saw the button on the way to viewing them earlier: back in IE, hit Tools, Internet Options, the General tab, and there's a Delete Cookies... button. Click it, answer yes to the confirmation, and the cookies are deleted. And, among other things, you'll now have to login again to every site that had saved your login using a cookie.
You can control how Internet Explorer handles cookies to reduce any concerns you may still have. On the Privacy tab of Internet Options you can set the level of cookie handling IE should follow. That includes not only allowing, or blocking, all cookies, but also controlling third-party cookies resulting from things like embedded ads I mentioned earlier. And you can define an explicit list of sites from which you're prepared to accept cookies.
Article C2032 - June 13, 2004
We are sorry, but the system was unable to process your request because your web browser did not behave as expected. Cookies are required by this website in order to ensure a seamless user experience.
Please make sure your browser has cookies enabled before continuing on your journey.
it gives me that what I have to do???
22-Nov-2009
I wanted an automated way of finding and deleting certain temporary internet files, so I can do it periodically. So, I wrote the following script in biterscripting that will delete selected temporary internet files.
# DeleteTIF.txt
# TIF=Temporary Internet Files
# Deletes all TIF containing the search term.
var str searchterm
var str dir
set $dir="C:\Users\UserName\AppData\Local\Microsoft\Windows\Temporary Internet Files"
var str list
lf -r -n -g "*" $dir > $list
while ($list > "")
do
var str file
lex "1" $list > $file
var str content
cat $file > $content
if ( { sen ("^"+$searchterm+"^") $content } > 0 )
do
system del ("\""+$file+"\"") 2>> "C:/DeleteTIF.err.txt"
echo "Deleted file " $file >> "C:/DeleteTIF.out.txt"
done
endif
done
Copy and paste the above script in file C:/Scripts/DeleteTIF.txt, start biterscripting (http://www.biterscripting.com ), enter the following command.
script "C:/Scripts/DeleteTIF.txt" searchterm("ad_client")
It will delete all TIF that contain the word ad_client (used by search engines to track a user's internet activity). Then, I put the following command in my task scheduler.
"C:\biterScripting\biterScripting.exe" "C:/Scripts/DeleteTIF.txt" searchterm("ad_client")
That ensured that the selected TIF are deleted every day.
That did it for me.
You can try it - just make sure you use correct path to your TIF in place of "C:\Users\UserName\AppData\Local\Microsoft\Windows\Temporary Internet Files" in the script - use double quotes around that path.
Posted by: PS at November 25, 2009 12:22 PMI use the privacy tab to block tracking cookies. The list has just disappeared and is emptied every time I start a new session. I must have un-ticked a box somewhere, but which one? Thanks
Posted by: Rupert D at January 4, 2010 1:52 AMCan I select what cookies I want to be deleted?
05-Jan-2010
Posted by: J. Sexton at January 4, 2010 8:53 AM
I was trying to upgrade my cell phone through ATT on the internet. Every time I clicked on the phone I wanted, it would take me back to my home page. I did call ATT to see if they could do it for me, but they didn't have the same options as the internet did, but the person from ATT told me because I was unable to process my upgrade was because I needed to clear my cookies. I've tired to remove it, and I've followed your steps, but it doesn't show the same as you are saying it. Oh and I just downloaded STOPzilla and it says I have infections and the infection name is "Cookies." I have 25 infection's from cookies. What do I need to do?
Posted by: Samantha at May 19, 2010 10:26 PM