batch file - How can I delete Internet Explorer cookies using bat script? -


i have written simple bat script computer few things. 1 of these things delete cookies computer.

i chose following command this;

rundll32.exe inetcpl.cpl,clearmytracksbyprocess 4351 

since following list of commands given on page;

https://social.msdn.microsoft.com/forums/ie/en-us/ce81943b-32b8-437b-b620-171c3d5893e7/inetcplcpl-with-clearmytracksbyprocess?forum=ieextensiondevelopment

echo clear temporary internet files:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 8    echo clear cookies:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 2    echo clear history:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 1    echo clear form data:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 16    echo clear saved passwords:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 32    echo delete all:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 255    echo delete w/clear add-ons settings:  rundll32.exe inetcpl.cpl,clearmytracksbyprocess 4351 

however, running antivirus software after running still deletes lots of cookies, know isn't deleting cookies expected. however, clear internet history.

is able explain why isn't working? have microsoft changed ie cookies cannot deleted, or websites using different folder cookies? also, command should using delete cookies?

as others said, rundll32.exe when run normally, runs under medium il. there way launch in low il can wipe out stuff in ie temporary internet files\low folder. make copy of rundll32.exe , set run in low il using cacls. more here: http://www.winhelponline.com/blog/rundll32-command-clear-ie-cache-ineffective-windows-vista-higher/

it's amazing people believe cache cleared running command normally.


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -