天天看點

垃圾檔案清理bat

@echo off

echo 正在清除系統垃圾檔案,請稍等......

del /f /s /q %systemdrive%\*.tmp  >nul 2>nul

del /f /s /q %systemdrive%\*._mp  >nul 2>nul

del /f /s /q %systemdrive%\*.log  >nul 2>nul

del /f /s /q %systemdrive%\*.gid  >nul 2>nul

del /f /s /q %systemdrive%\*.chk  >nul 2>nul

del /f /s /q %systemdrive%\*.old  >nul 2>nul

del /f /s /q %systemdrive%\recycled\*.*  >nul 2>nul

del /f /s /q %windir%\*.bak  >nul 2>nul

del /f /s /q %windir%\prefetch\*.*  >nul 2>nul

rd /s /q %windir%\temp & md %windir%\temp  >nul 2>nul

del /f /q %userprofile%\cookies\*.*  >nul 2>nul

del /f /q %userprofile%\recent\*.*  >nul 2>nul

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"  >nul 2>nul

del /f /s /q "%userprofile%\Local Settings\Temp\*.*"  >nul 2>nul

del /f /s /q "%userprofile%\recent\*.*"  >nul 2>nul

echo 清除系統LJ完成!

echo. & pause

繼續閱讀