垃圾清理脚本(windows)

@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

@title 删除备份文件

del /f /s /q %windir%\*.bak

@title 临时文件

del /f /s /q %windir%\temp\*.*

del /f /a /q %systemdrive%\*.sqm

del /f /s /q "%userprofile%\cookies\*.*"

del /f /s /q "%userprofile%\recent\*.*"

echo 清除系统垃圾文件完成!

echo. & pause


使用方法:新建他txt文件,将其改名为 clean.bat ,然后将分割线上脚本复制到文件 clean.bat即可,使用时鼠标跑双击该脚本即可。

你可能感兴趣的:(垃圾清理脚本(windows))