window clean 实现清理垃圾内容

@echo off
echo 正在清理系统垃圾文件,请稍等!
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\temp\*.*
del /f /a /q %systemdrive%\*.sqm
del /f /s /q %windir%\SoftwareDistribution\Download\*.*
del /f /s /q "%userprofile%\cookies\*.*"
del /f /s /q "%userprofile%\recent\*.*"
del /f /s /q "%userprofile%\local settings\temporary internet files\*.*"
del /f /s /q "%userprofile%\local settings\temp\*.*"
echo 清除系统垃圾文件完成!
echo.

注意:一定要设置成 gbk 的格式,否则会乱码。建议使用 notepad++ 编辑

posted @ 2022-05-11 21:33  LoremMoon  阅读(155)  评论(0编辑  收藏  举报