这段程序什么意思!

来源:百度知道 编辑:UC知道 时间:2024/05/22 19:21:25
@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
如果我要删除C:\Docum

这段是用来清除垃圾文件的,也就是删除在上面写的路径下面的文件后缀名为tmp的文件(其他类型的与之类似)

要删除C:\Documents and Settings\All Users\Application Data\thunder_vod_cache 下的所有文件,只要把删除部分的那段改成如下的即可:
del /f /s /q C:\Documents and Settings\All Users\Application Data\thunder_vod_cache\*

这是完整的吗 如果是 在 程序编辑 网站上编辑一下
这好象是一个还原程序 也有点象格式化程序

清除垃圾文件