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

Leave A Comment?