Working on a solution where i need to do alot of changes and validate that the changes are working correclty, i was clearing the cache manually going to the Internet Explorer and then using Tools > Internet Options and then under the Browsing History click on the Delete button, that was extremely tedious and it was taking a little more time that i want it to be.
looking to resolve the clicking and using a script i research on how to Clear the Cache using the command prompt, and found the following scripts that you can run
255 Deletes All History 1 Deletes History Only 2 Deletes Cookies Only 8 Deletes Temporary Internet Files Only 16 Deletes Form DAta Only 32 Deletes Password History Only 4351 Deletes All Previous
rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
rundll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
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 4351
i have them in a batch file and just run the batch file when I need to clear the cache.
enjoy!
abe.