2013年8月21日 星期三

刪除系統產生的垃圾

@echo off
if exist "%USERPROFILE%\Recent\*.*" del /s /f /q "%USERPROFILE%\Recent\*.*"
if exist "%USERPROFILE%\Local Settings\Temporary Internet Files\*.*" del /s /f /q "%USERPROFILE%\Local Settings\Temporary Internet Files\*.*"
pause
if exist "%USERPROFILE%\Local Settings\History\*.*" del /s /f /q "%USERPROFILE%\Local Settings\History\*.*"
if exist "C:\Recycled\*.*" del /s /f /q "C:\Recycled\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"

沒有留言: