卡饭网 > 一键 > 正文

一键清理系统垃圾文件bat(一键清理bat)

来源:本站整理 作者:梦在深巷 时间:2013-10-24 11:51:49

警告:运行BAT源码是一种危险的动作,如果你不熟悉,请不要尝试!
一键清理系统垃圾文件bat,方便使用,不用手工删除

复制代码代码如下:
@echo off
echo 正在清理系统垃圾文件,请稍等......
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old
del /f /s /q %systemdrive%recycled*.*
del /f /s /q %windir%*.bak
del /f /s /q %windir%prefetch*.*
rd /s /q %windir%temp & md %windir%temp
del /f /q %userprofile%cookies*.*
del /f /q %userprofile%recent*.*
del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"
del /f /s /q "%userprofile%recent*.*"
echo 清理系统垃圾完成!

相关推荐