Create bat file to delete the temp files automatically

Copy the following code and paste in notepade and save as .bat to delete the temp files automatically...

del /s /f /q %windir%\temp\*.* 
rd /s /q %windir%\temp 
md %windir%\temp
del /s /f /q %windir%\Prefetch\*.* 
rd /s /q %windir%\Prefetch 
md %windir%\Prefetch
del /s /f /q "%USERPROFILE%\Local Settings\Temp"\*.* 
rd /s /q "%USERPROFILE%\Local Settings\Temp" 
md "%USERPROFILE%\Local Settings\Temp"
del /s /f /q "%USERPROFILE%\Recent"\*.* 
rd /s /q "%USERPROFILE%\Recent" 
md "%USERPROFILE%\Recent"
Click Start, and then click Run.
In the Open box, type the following command, and then press Enter:
c:\windows\SYSTEM32\cleanmgr.exe /cDrive 

0 Comments