自己动手做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 这个还是可以的~垃圾少的可以用用 谢谢分享的朋友 谢谢分享37~~ 35~~ 谢谢楼主的啊,学习学习 谢谢提供,谢谢分享.
页:
[1]