Jump to content

How to _IE Del History?


Recommended Posts

It can be done so simple for IE:

+ This works for me in XP sp2 for IE 8

#cs
Temporary Internet Files

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

Cookies

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

History

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1

Form Data

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

Passwords

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

Delete All

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

Delete All – “Also delete files and settings stored by add-ons”

    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
    #ce


#include <Process.au3>
_RunDOS("RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1")
If @error Then
    MsgBox(64,"ERROR WHILE CLEANING DATA","ERROR WHILE CLEANING DATA",3)
    Exit
    Else
MsgBox(64,"Cleared Successfully","Cleared Successfully")
EndIf
Edited by Sh3llC043r
[size="5"] [/size]
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...