- 听众
- 收听
- 积分
- 1679
- 主题
- 回帖
- 0
- 精华
注册时间2007-4-18
最后登录1970-1-1
该用户从未签到
|
发表于 2007-4-27 10:18:00
|
显示全部楼层
回复:自动清除系统垃圾
.......
不下载我就猜到是什么东西
就是一个批处理文件
用记事本打开
无非就是
@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 清除系统LJ完成!
echo. & pause
之类的东西
还算有点用,不过这个也不完全。。。。。 |
|