垃圾文件清理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

你可能感兴趣的:(职场,bat,文件,休闲,垃圾)