How to clean Temporary files in Windows
This small batch file will help us to clear the temporary files in Windows.
All you need to do is save the below code and run it as a scheduled Task
@ECHO OFF
DEL /F /S /Q %TEMP%
This small batch file will help us to clear the temporary files in Windows.
All you need to do is save the below code and run it as a scheduled Task
@ECHO OFF
DEL /F /S /Q %TEMP%