views:

41

answers:

1

i've been able to disable ctrl shift delete and also from under safety tab however, when you press ctrl h or click favourites and then history you can still delete.

i need to know how to block this feature.

i've tried looking on google and that tells me to DisableDeleteBrowsingHistory dword set value as 1, all what that does is blocks ctrl alt del.

using ie8 on xp pro

any help on blocking ctrlH delete would be appreciated

A: 

If you just want to block that key combination when IE is up, you can use an AutoHotkey script. However, the user could still click to open History and then delete, right?

AutoHotkey script:

SetTitleMatchMode,2
#IfWinActive Windows Internet Explorer
   ^H::
return
Jay
thats what i'm trying to et ride of, being able to delete histroy,both ctrlH and right click on histroy.
Tuffy G