请教电脑编程高手

来源:百度知道 编辑:UC知道 时间:2024/05/17 00:33:26
请问这个程序有什么作用,会不会对系统有影响。
@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

对系统没的影响的 它只是清理一些系统的垃圾文件(包括一写服务程序、零时的文件、不相关的系统片和网址等 主要针对于系统的文件)

应该不会
清理一些COOKIES和垃圾文件而已

只是个很文件简单的批处理,
他是删除一些我们操作系统在使用过程中所保存下来的一些没用的文件,。也就是相当于垃圾文件了。