pcjunki Posted June 18, 2012 Posted June 18, 2012 (edited) here's my code that i use for I.E. to clear the history out. ShellExecute("C:\Windows\System32\inetcpl.cpl") sleep(2000) Send("{ALTDOWN}d{ALTUP}") ;sets the preserve favorites website data ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:1]", "check") ;sets the temporary internet files ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:2]", "check") ;sets the cookies ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:3]", "check") ;sets the history ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:4]", "check") ;sets the download history ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:5]", "check") ;sets the form data ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:6]", "check") ;sets the passwords ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:7]", "check") ;sets the activeX filtering and tracking protection data ControlCommand("Delete Browsing History", "", "[CLASS:Button; INSTANCE:8]", "check") sleep(2000) Send("{ALTDOWN}d{ALTUP}{ESC}") Edited June 18, 2012 by pcjunki
shai Posted June 20, 2012 Posted June 20, 2012 you need only one line to do this: RunWait ('RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351', '', @SW_HIDE)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now