Created
September 10, 2013 09:10
-
-
Save thekarel/6506894 to your computer and use it in GitHub Desktop.
Delete IE history on the command line -- From http://ie-support.blogspot.co.uk/2011/02/use-command-line-to-delete-ie-browsing.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::Delete Temporary Internet Files | |
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 | |
::Delete Cookies | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2 | |
::Delete History | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1 | |
::Delete Form Data | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16 | |
::Delete Passwords | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32 | |
::Delete All | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255 | |
::Delete Files and Settings Stored by Add-Ons | |
::RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment