December 23, 2021
BATCH SCRIPT TO DELETE TEMP FILES AND CLEAR CACHE
@echo off
@echo clear ram cache , temp files boost computer speed
title This file is cleaning and Removing the temp files
color 0a
tree c:\windows\temp
del /s /f /q c:\windows\temp\*.*
tree c:\windows\prefetch
del /s /f /q c:\windows\prefetch\*.*
tree %userprofile%\appdata\local\temp
del /s /f /q %userprofile%\appdata\local\temp\*.*
%windir%\system32\rundll32.exe advapi32.dll,ProcessIdleTasks
@echo temp and windows memory cache file deleted successfully , press any key to continue....
pause > nul