Clearing temporary files

Configurare noua (How To)

Situatie

Solutie

Removing temporary files helps you free up your storage space and declutter your computer. The following commands help you do that. Make sure to run this file as an admin to avoid running into any errors.

@echo off
echo Clearing Temporary Files...
del /q /f /s %temp%\*
rd /s /q %temp%
echo Temporary files cleared.
pause
The batch file to delete the temporary files.

Tip solutie

Permanent

Voteaza

(0 din 0 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?