Skip to content

Instantly share code, notes, and snippets.

@r14n
Last active August 29, 2015 13:57
Show Gist options
  • Save r14n/9397160 to your computer and use it in GitHub Desktop.
Save r14n/9397160 to your computer and use it in GitHub Desktop.
Delete IE Tempory Files / Cookies bat file (tested on Windows 7)
set USERNAME=4gStudios
set Cookies=C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Windows\Cookies
del /q /s /f "%Cookies%"
set IETemp=C:\Users\%USERNAME%\AppData\Local\Microsoft\Windows\Tempor~1
del /q /s /f "%IETemp%"
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment