Batch Programming : Make a Temp File Cleaner
While you use your Computer, it creates some temp file inside its system drive to store temporary data. But when your computer work finishes,
your computer might forget to delete the temporary files. As a result it slow downs your system activity.
But if you want you can create a temp file cleaner easily. For this follow the steps below:
OPEN THE notepad
AND TYPE THIS
@echo off
del /s /f /q c:\windows\temp\*.*
rd /s /q c:\windows\temp
md c:\windows\temp
del /s /f /q C:\WINDOWS\Prefetch
del /s /f /q %temp%\*.*
rd /s /q %temp%
md %temp%
cls
del /s /f /q c:\windows\temp\*.*
rd /s /q c:\windows\temp
md c:\windows\temp
del /s /f /q C:\WINDOWS\Prefetch
del /s /f /q %temp%\*.*
rd /s /q %temp%
md %temp%
cls
THEN SAVE IT AS
CLEAN.BAT
THEN RUN ITSharing is sexy
0 comments for this post
Leave a reply