linmuhan 发表于 2008-2-10 20:58:57

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

nzw1983 发表于 2008-2-10 22:56:43

这个还是可以的~垃圾少的可以用用

meibanfala 发表于 2008-2-11 11:55:54

谢谢分享的朋友

shem 发表于 2008-2-11 16:07:18

谢谢分享37~~ 35~~

freedom 发表于 2008-2-12 09:44:00

谢谢楼主的啊,学习学习

zhihua 发表于 2008-2-12 12:04:15

谢谢提供,谢谢分享.
页: [1]
查看完整版本: 自己动手做bat 系统清理文件