电脑自动清理.

来源:百度知道 编辑:UC知道 时间:2024/07/08 16:10:06
我想让电脑在开机或关机的时候,自动清理临时文件夹.(好象写个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 清除系统LJ完成!
echo. & pause

把以上内容保存为*.BAT,
然后放到启动项里面就可以开机自动清除了.

新建记事本,复制以下代码后保存.后缀名改为bat
很实用哦

@echo off