使用 VBScript 删除浏览器 (IE) 缓存和 cookie

Deleting browser (IE) cache and cookies using VBScript

我需要帮助使用 VBScript 删除浏览器 cookie 和缓存。我尝试了各种博客中的许多方法,但发现没有用。

提前致谢!

Set WshShell = CreateObject("WScript.Shell")
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8"

'To clear browsing cookies
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2"

'To Clear Browsing History
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1"

试试看。