This question should be simple to answer - but I can't get it. How can I delete the Internet Explorer History and Temporary Internet Files with Visual Basic code?
Printable View
This question should be simple to answer - but I can't get it. How can I delete the Internet Explorer History and Temporary Internet Files with Visual Basic code?
You can use Deltree.
Code:Shell "DELTREE /Y C:\WINDOWS\HISTORY\*.*"
Shell "DELTREE /Y C:\WINDOWS\TEMPOR~1\*.*"