chenfayefaye 发表于 2005-11-5 13:44:02

[用]快速清除系统垃圾简单方法

新建一个记事本并COPY以下的字体内容:



@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 Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾完成!
echo. & pause


将之保存为后缀名为.bat的批处理文件,更名为“xxxxxx.bat”,以后只要双击运行该批处理文件即可。

睡谷 发表于 2005-11-5 13:45:03

真的
??!!

chenfayefaye 发表于 2005-11-5 13:46:28

一试即知。不用什么超兔。什么大师。

cancan 发表于 2005-11-5 13:52:14

好厉害啊刷刷的~

睡谷 发表于 2005-11-5 14:00:05

还行!
但要手动改路径,直接copy上面可不行

Mark 发表于 2005-11-5 16:06:05

哇,真不错

出库单 发表于 2005-11-5 16:51:44

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

cookies就没必要删了
要有选择地用
页: [1]
查看完整版本: [用]快速清除系统垃圾简单方法