How to Clear IE7 Browsing History From the Command Line

sparksspace | Sunday, August 03, 2008 | 1 comments

The following is  the dialog that you are probably used for clear browsing history.

  SparksSpace

You can remove all those by  using command line .Use the following commands.

Start > Run type CMD , press OK.In the window copy&paste the following commands and press enter.

To clear the Cookies  :                                                                                            RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

SparksSpace002

To clear the Temporary Internet Files :                                                      RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

SparksSpace003

To clear Form Data :                                                                                     RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

SparksSpace004

To clear the Passwords :                                                                              RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

SparksSpace005

To clear ALL :                                                                                                   RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

SparksSpace006

Category: ,

Welcome to SparksSpace . This blog launched on Dec 2007 with a focus on Technology.You can find latest Computer Software, Tutorials, Tricks,Tips & Software promotions here!

1 comment:

  1. Hi spark,

    thanks for a nice tip.

    i preffer to create a batch file for this

    Copy following five lines to a notepad, and save them as batch file, (save with .bat extension ) and run it



    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
    RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

    ReplyDelete