-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean_all_browseR_caches.bat
28 lines (19 loc) · 1 KB
/
clean_all_browseR_caches.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
erase "%TEMP%\*.*" /f /s /q >NUL
for /D %%i in ("%TEMP%\*") do RD /S /Q "%%i" >NUL
erase "%TMP%\*.*" /f /s /q >NUL
for /D %%i in ("%TMP%\*") do RD /S /Q "%%i" >NUL
erase "%ALLUSERSPROFILE%\TEMP\*.*" /f /s /q >NUL
for /D %%i in ("%ALLUSERSPROFILE%\TEMP\*") do RD /S /Q "%%i" >NUL
erase "%SystemRoot%\TEMP\*.*" /f /s /q >NUL
for /D %%i in ("%SystemRoot%\TEMP\*") do RD /S /Q "%%i" >NUL
@rem Clear IE cache - (Deletes Temporary Internet Files Only)
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8 >NUL
erase "%LOCALAPPDATA%\Microsoft\Windows\Tempor~1\*.*" /f /s /q >NUL
for /D %%i in ("%LOCALAPPDATA%\Microsoft\Windows\Tempor~1\*") do RD /S /Q "%%i" >NUL
@rem Clear Google Chrome cache
erase "%LOCALAPPDATA%\Google\Chrome\User Data\*.*" /f /s /q >NUL
for /D %%i in ("%LOCALAPPDATA%\Google\Chrome\User Data\*") do RD /S /Q "%%i" >NUL
@rem Clear Firefox cache
erase "%LOCALAPPDATA%\Mozilla\Firefox\Profiles\*.*" /f /s /q >NUL
for /D %%i in ("%LOCALAPPDATA%\Mozilla\Firefox\Profiles\*") do RD /S /Q "%%i" >NUL