打印

[提问] 请大家看看这个BAT有什么不足之处

本主题由 黑暗风暴 于 2008-6-12 22:59 下沉

请大家看看这个BAT有什么不足之处

@echo off
title             清除垃圾文件
pause
echo ************************************************************************************
echo *                   正在清除系统垃圾文件,请稍等......                             *
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\*.*"
del /f /s /q C:\Documents and Settings\Administrator\Cookies\*.txt
pause
echo                              *************************
echo                              *Work has been completed*
echo                              *************************
echo. & pause

TOP

....................
看了也不说顶顶~
小菜路过

TOP

看过拉

我觉得这个批处理很正常的。应该没有什么问题的吧??
没什么不足``在系统中清理了一些临时文件``和垃圾文件``可以为你节省点空间``

TOP

看不懂ing..............................
del /f /s /q C:\Documents and Settings\Administrator\Cookies\*.txt
系统不在C盘怎么办

TOP

用指向系统盘的参数%systemdrive%
引用:
原帖由 dreameren 于 2008-5-30 18:00 发表
del /f /s /q C:\Documents and Settings\Administrator\Cookies\*.txt
系统不在C盘怎么办
呵呵!你不会改吗???

TOP

最好指定个背景颜色
命令前面加个"@"运行的时候就不显示执行什么命令了~
看起来比较舒服

Processed in 0.501878 second(s), 6 queries, Gzip enabled