把下的保存为aa.bat,双击运行就可以了。
@echo off
title 易用通垃圾清理
color 4f
echo.
echo 将帮您的系统清理垃圾文件
@pause nul
echo.
echo 正在给您清理系统垃圾
echo.
echo 正在为您清理系统临时文件
echo.
del /f /s /q %systemdrive%\*._mp 2nul
del /f /s /q %systemdrive%\*.gid 2nul
del /f /s /q %systemdrive%\*.chk 2nul
del /f /s /q %systemdrive%\*.old 2nul
del /f /s /q %systemdrive%\recycled\*.* 2nul
del /f /s /q %windir%\*.bak 2nul
del /f /s /q %windir%\prefetch\*.* 2nul
rd /s /q %windir%\temp 2nul & md %windir%\temp 2nul
rd /s /q %userprofile%\Local Settings\Temp 2nul & md %userprofile%\Local Settings\Temp 2nul
del /f /q %userprofile%\cookies\*.* 2nul
del /f /s /q %userprofile%\recent\*.* 2nul
rd /s /q %windir%\SoftwareDistribution\Download 2nul
echo 系统临时文件清理完毕
echo.
echo 正在为您清理系统安全更新备份临时文件
echo.
md %windir%\SoftwareDistribution\Download 2nul
rd /s /q %windir%\$hf_mig$ 2nul
md %windir%\$hf_mig$ 2nul
for /f delims= %%a in ('dir/ad/b/s %windir%\$Ntuninstall* 2^nul') do rd /s /q %%a 2nul
echo 系统安全更新备份临时文件清理完毕
echo.
echo 正在为您清理IE历史记录和缓存文件
echo.
del /f /s /q %userprofile%\Local Settings\Temporary Internet Files\*.* 2nul
echo IE历史记录和缓存文件清理完毕
echo.
echo 清除全部系统垃圾完成!请按任意键退出
pausenul
取消
评论