Jun 14
Have you ever tried to find your Internet Explorer 7 (IE7) cookies or temporary files on disk using Windows Explorer? Chances are Explorer is configured to hide system files, which is how Microsoft has designated the folder that contains its IE7 files.
To find IE7 cookies and temporary files from Windows Explorer:
- Click Start, then select My Computer. An Explorer window opens.
- Type this path in the Explorer address bar:
“C:\Documents and Settings\UserName\Local Settings\Temporary Internet Files”, replacing the UserName with your user’s name.
Or you can view the files from Internet Explorer 7:
- In IE7, click the Tools button, then select Internet Options from the drop-down menu.
- In the General tab, in the Browsing History section, click the Settings button. The “Temporary Internet Files” dialog appears.
- Click the View Files button. Explorer will open, showing you the IE7 cookies and temporary files.
Popularity: 26% [?]
Related posts:
- WordPress "Add Category" Bug
- Move "My Documents" Folder
- Internet Explorer 6: It’s Time to Die
- How to Install and Setup Windows Live Writer
- Install WordPress on GoDaddy Shared Hosting
Tags: Cookies, IE7, Internet-Explorer, Internet-Explorer-7, Temporary-Files, Temporary-Internet-Files, Web, Windows




July 9th, 2007 at 5:14 pm
What about the history of last visited files? In IE6 you could also browse them
July 10th, 2007 at 9:39 am
Re: What about the history of last visited files? In IE6 you could also browse them
Yes, you can view them directly in Explorer. Typically the IE7 history files are stored at:
C:\Documents and Settings\UserName\Local Settings\History
Note that you have to set Explorer to show hidden operating system files. To do this in Explorer:
1. Click the “Tools > Folder Options” menu.
2. Click the “View” tab.
3. Scroll down to find “Hide Protected Operating System Files”. Uncheck it.
4. Click “OK”.
August 1st, 2008 at 9:18 pm
[...] cookies or temporary files on disk using Windows Explorer? Chances are explorer is configured to …http://www.devtopics.com/internet-explorer-7-cookies-and-temporary-files/Release Notes for Internet Explorer 7These Release Notes give you information about installing [...]
December 9th, 2008 at 5:29 am
It is easier to just delete them using your browser tool bar. I would not bother looking for them using Windows explorer.
March 2nd, 2009 at 9:52 am
Just because something like going through IE is easier for a bonehead end user doesn’t mean there are not logical reasons for wanting to know where in the filesystem this can be done. Automating this via a link on the desktop is even easier than sending somebody through the mess known as IE’s Internet Options but would require the person writing a script (to delete the cache/cookies) to know where those are.
April 30th, 2009 at 6:02 am
ab – you’re an idiot.
June 20th, 2009 at 7:28 am
I like options.
And I belive that ab is right.
My IE’s Internet Options are a mess indeed.
When I click
Tools -> Internet Option
I get a brief flicker on the screen an nothing happens.
-Roger
August 12th, 2009 at 6:59 am
When i do
C:\Documents and Settings\UserName\Local Settings\Temporary Internet Files
It says acces denied what should i do?
August 12th, 2009 at 9:26 am
If you are on Windows Vista, the location is different:
“C:\Users\UserName\AppData\Local\Microsoft\Windows\Temporary Internet Files”
Of course, remember to replace “UserName” with your user name. It’s probably best to open Explorer and start navigating at C:
September 23rd, 2009 at 10:06 am
Article says “In IE7, click the Tools button, then select Internet Options from the drop-down menu.
In the General tab, in the Browsing History section, click the Settings button. The “Temporary Internet Files” dialog appears.
Click the View Files button. Explorer will open, showing you the IE7 cookies and temporary files.”
This may apply to previous versions of Windows but it does NOT apply to Vista. Due to Vista’s Mandatory Integrity Control, which creates Low Privilege, virtual folders the Cookie folder in Vista is now located at:
C:\Users\username\AppData\Roaming\Microsoft\Windows\Cookies C:\Users\username\AppData\Roaming\Microsoft\Windows\Cookies\Low
And as Microsoft do not think you should have access to these files, you will need to manually change your folder options to Show Hidden Files and Folders before you can see them! You may also have to uncheck Hide Protected operating system files.
Furthermore, in Vista you cannot see these files by opening Internet Options and clicking Settings > View files because even though cookies are no longer stored there IE still opens the old location: C:\Users\Shereen\AppData\Local\Microsoft\Windows\Temporary Internet Files
I am just about to try “the move folder” option, to see if moving it to its actual location will enable me to see cookies from Internet Options. But apparently, Windows has to “log off” before it can move the folder! So I will post back and let you know the results shortly!
September 23rd, 2009 at 10:24 am
Well, opening Internet Options and clicking Settings and moving the folder to:
C:\Users\username\AppData\Roaming\Microsoft\Windows\Cookies\Low
was not the perfect solution because when I clicked view files, it opened Windows Explorer at:
C:\Users\username\AppData\Roaming\Microsoft\Windows\Cookies\Low\Temporary Internet Files
BUT it did make viewing and editing my cookies a great deal simpler because from there, it was just a matter of clicking the folder above (ie Low) and I could see all my cookies – and delete any I didn’t want!
So basically, the exercise was a success!
October 20th, 2009 at 2:00 pm
thanx for dis post:).. it worked for me:)
November 6th, 2009 at 7:57 pm
Just wanted to confirm with Jones that “ab” is an idiot.
November 25th, 2009 at 2:03 pm
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.