A quicky but a goody. Sometimes you just need a quick way to delete temp files
from IE. In most cases for me its when I’m writing a webapp, so I’ve stuck this
in the build properties:
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
It doesn’t require elevated permissions, and has been tested on Vista and Windows
7. Each command deletes the different types of data: temp files, stored form
info, cookies etc. Enjoy.