Link to home
Start Free TrialLog in
Avatar of kshyam10
kshyam10

asked on

Browsing History

Hi,
I am IT assistant in a school.how can i find the browsing history of students what websites they have visited.
can any one help me in finding  how to check that
Avatar of Kavostylin
Kavostylin

Hi There,

Unless you are logging this on a server. You would just access the browsing history through the browser you are using.

KAVO
You can press Ctrl H to check the browser history of each computer (both firefox and IE).

The problem you have is if each student logs into a computer with a generic login such as 'student'. If your school uses an Active Directory enviroment and has individual logins for each student, you can tell where each student has been. Otherwise all you can get is an idea where the browser has been at a particular date and time.
You could visit the History section of any browser. its located on top menu.

Or else, you could just scroll address bar to see the recent websites visited by user

(You can check History only if it is not cleared up)

thanks'
Enter Internet Explorer from your computer.
Go to the URL window at the top of the browser and click on the downward-pointing arrow.
View the list of Web sites that you have recently visited.

     or
click History Tab on standard Tool Bar or ctl+H
 
Go to C:\Documents and Settings\%username%\Local Settings\Temporary Internet Files

There you can see local cache of latest accessed web pages.
Avatar of John Griffith
Hi -
Here are the folders to check.  Be sure to check under each username, specifically the Administrator.  You can log onto the Admin account by booting into SAFEMODE - tap the F8 key repeatedly during boot-up.  The Admin account s/b able to overcome any file permission problems.  They are hidden folders/ files -
 
 


c:\Documents and Settings\Default User\AppData\Local\Microsoft\Windows\Temporary Internet Files
c:\Documents and Settings\Default Usert\AppData\Local\Microsoft\Windows\History
c:\Documents and Settings\username\AppData\Local\Microsoft\Windows\History
c:\Documents and Settings\username\AppData\Local\Microsoft\Windows\History\Low
c:\Documents and Settings\username\AppData\Local\Microsoft\Windows\Temporary Internet Files
c:\Documents and Settings\username\AppData\Local\Microsoft\Windows\Temporary Internet Files\Low
c:\Windows\ServiceProfiles\LocalService\AppData\Local\Microsoft\Windows\Temporary Internet Files
c:\Windows\Temp\History
c:\Windows\Temp\Temporary Internet Files
 
CHECK FOR THESE FOLDERS in each 
\Content.IE5
\History.IE5

Open in new window

kshyam10--I am assuming the kids are smart enough to know to delete History.
More difficult is to delete the index.dat file in Content.IE5 where data on website visits is also kept.  That is a subfolder of Temporary Internet Files and it is a hidden file.  One way to reach it is to type C:\Documents and Settings\Username\Local Settings\Temporary Internet Files\Content.IE5 into a Windows Explorer Address bar and click Enter.
Now, reading the index.dat requires special programs.  Try
http://support.it-mate.co.uk/?mode=Products&p=Index.datSuite
http://www.acesoft.net/index.dat%20viewer/index.dat_viewer.htm
These programs will offer to read all the index.dat files on the hard drive.
Remember it is the index.dat file in Content.IE5 that you want to read.
The "delete history" buttons used on either IE7/ 8 or FFox leave alot behind.  Furthermore, if the history is deleted, the index.dat will be updated accordingly.  To read a hidden file within Windows Explorer you must change the folder options - if not already set to read hissen & system files.   The IE5 content files have both Hidden & System attributes.  To remove the attributes, via the cmd/"DOS" screen -  change the folder (directory) to and IE5 content file via the CD command.  You can list a directory's contents via DIR command -
 
 


 
PASTE THESE COMMANDS IN 1 at a time or copy into a Notepad and save it with .BAT as the extension.  Then 2x-click on BAT file and it will run the commands.  Either way, a Notepad will open on its own with the contents of the folder - files, sub-folders & its files, etc...
c:
cd \Documents and Settings\username\AppData\Local\Microsoft\Windows\History\Low
dir /a /s > %temp%\1.txt & start notepad %temp%\1.txt
 
To change the Hidden & System attributes, go to the directory, then type -
 
attrib -h -r *.* /s 
 
To change the directory up one level -
cd ..

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of jcimarron
jcimarron
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
http://www.acesoft.net/index.dat%20viewer/index.dat_viewer.htm
I used the suggestion above jcgriff2.  It was just what I needed.  Unfortunately you get a lot of history.  
Thanks,
I mean the suggestion from jcimarron.  Thanks