复制以下内容到.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 清除系统垃圾文件完成!
评论