Temporary Internet Files deletion
Since IE7, there is a command line which deletes them directly.
Using ShellWait WinTask function, you can delete the temporary Internet files with this line:ShellWait("rundll32.exe"+" InetCpl.cpl,ClearMyTracksByProcess 8",4,30)' The 8 number after ClearMyTracksByProcess means delete the Temporary files
' The 4 ShellWait parameter means that the command will run hidden. And the last 30 parameter means that the command will have a maximum of 30 secs to execute.If you need to delete cookies, replace the 8 number by 2
If you need to delete History, replace the 8 number by 1
If you need to delete All, replace the 8 number by 255