aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clean.bat15
1 files changed, 15 insertions, 0 deletions
diff --git a/clean.bat b/clean.bat
new file mode 100644
index 0000000..90aef24
--- /dev/null
+++ b/clean.bat
@@ -0,0 +1,15 @@
+@ECHO OFF
+DEL /S /Q /F "%TEMP%\*.*"
+DEL /S /Q /F "%TMP%\*.*"
+DEL /S /Q /F "%USERPROFILE%\Local Settings\Temp\*.*"
+DEL /S /Q /F "%LOCALAPPDATA%\Temp\*.*"
+DEL /S /Q /F "%WINDIR%\temp\*.*"
+FOR /D %%p IN ("%WINDIR%\Temp\*") DO RMDIR /S /Q "%%p"
+del /f /q "%appdata%\Microsoft\teams\application cache\cache\*.*" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\blob_storage\*.*" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\databases\*.*" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\GPUcache\*.*" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\IndexdDB\*.db" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\Local Storage\*.*" > nul 2>&1
+del /f /q "%appdata%\Microsoft\teams\tmp\*.*" > nul 2>&1
+EXIT \ No newline at end of file