批处理方式清理系统垃圾

lizhi0710
2024-05-05 / 0 评论 / 17 阅读 / 正在检测是否收录...

复制以下内容到.bat文件内

不会保存bat文件自行百度

代码如下:


@echo off
title 系统垃圾清工具,正在清理中…
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%SoftwareDistributionDownload*.*
del /f /s /q “%userprofile%cookies*.*”
del /f /s /q “%userprofile%recent*.*”
del /f /s /q “%userprofile%local settingstemporary internet files*.*”
del /f /s /q “%userprofile%local settingstemp*.*”
echo 清除系统垃圾文件完成!
0

评论

博主关闭了所有页面的评论