x32x01
ADMINISTRATOR
- by x32x01 ||
Clear Temporary files in your system at one click:
Are you tired of going to a temporary folder and deleting temporary files every time your computer starts running slow? We can create a bat file that will delete all the temporary files in your System just after clicking on them.
To make the scripts you can follow steps below or you can just download it from the link given below:
Step1:
Open notepad and type this code. (or just download the bat file)
Step 2:
Press Ctrl+S or just Go to files>save and save it as (you can give it any name but you have to put .bat at the end)and click on save button.
Step 3:
just double click on it to run every time you feel like your system is running slow.
Are you tired of going to a temporary folder and deleting temporary files every time your computer starts running slow? We can create a bat file that will delete all the temporary files in your System just after clicking on them.
To make the scripts you can follow steps below or you can just download it from the link given below:
Step1:
Open notepad and type this code. (or just download the bat file)
Code:
@echo off
cd /D %temp%
for /d %%D in (*) do rd /s /q "%%D"
del /f /q *
Press Ctrl+S or just Go to files>save and save it as (you can give it any name but you have to put .bat at the end)and click on save button.
just double click on it to run every time you feel like your system is running slow.