Jump to content

Recommended Posts

Posted

Don't know of an existing script, but IE Privacy Keeper is free and efficient (cleans FF history as well)

It can clean lots of other stuff too. Cleanup actions can be started manually, or on a schedule

(@ Win shutdown/startup, @ IE or FF shutdown, @ shutdown of apps to be defined by you)

HTH,

whim

Posted (edited)

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]

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
  • Recently Browsing   0 members

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