I'd like to know if there is a programming hook or some other feature in windows vista and IE 7 or 8 that would let a computer administrator let the user think they were deleting their web browser history but actually just copy it off to another folder. The new folder would use the date and time deletion was attempted as its naming convention. This would be used in place of a parental control program and as far as the user knows they have deleted the browser history.

link|improve this question
2  
I sure hope not... – jheddings Nov 4 '09 at 2:50
13  
Major ethical fail. – Robert Harvey Nov 4 '09 at 2:50
3  
How is that an ethics issue? What if the machine is owned by a company and corporate guidelines prevented non-work browsing. Do you think the police should notify crims when they're being staked out? Given the mention of parental control, this is obviously for children and, given that most kids are actually smarter than their oldies with computers, parents need all the help they can get :-) – paxdiablo Nov 4 '09 at 2:59
4  
In a corporate environment, there is no expectation of privacy, and employees are usually told monitoring takes place; that is part of the deterrence. For children there is no expectation of privacy either, but misleading them about that tells them that this kind of subversive behavior is OK as an adult, which it is not. – Robert Harvey Nov 4 '09 at 3:05
feedback

3 Answers

up vote 2 down vote accepted

There is no supported way of doing this. There are no hooks. The Delete Browsing History feature does not have any extensibility points.

The right way to monitor is using a proxy (as mentioned in other answers). Alternatively, you could redirect the cache folder to a network share and have the network server make backups of it as often as you want. Or you could write a local script to do something similar.

Or just use the built-in IE parental controls.

Or, if you really want to, since IE just calls a helper method in inetcpl.cpl, you could detour the ClearMyTracksByProcess method exported by inetcpl.cpl and fake the UI while doing whatever you wanted to. But I really don't recommend doing that. Actually that would probably work quite well, aside from being really evil.

link|improve this answer
msdn.microsoft.com/en-us/library/dd565719(VS.85).aspx is called on DBH, but by the time it's called, the history is already gone. The better approach is to just use Group Policy to prevent deletion. – EricLaw -MSFT- Dec 30 '09 at 23:42
feedback

Never write a program that reports a result that's different from what actually happened.

It's far more effective to just tell the user that they are being monitored.

link|improve this answer
haha unless you want to breed viruses. – o.k.w Nov 4 '09 at 2:58
2  
Like I was saying... – Robert Harvey Nov 4 '09 at 2:59
feedback

I'd recommend using OpenDNS instead and enable the logging feature. (However - I would feel that this is only fair if the end user(s) are notified that logging is occuring)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.