我有一个清除系统垃圾的程序……

来源:百度知道 编辑:UC知道 时间:2024/06/25 06:12:32
但现在每次清除的时候就会出现这样的一句话:“系统检测到危害安全的尝试,请确认您能与对您进行身份验证的服务器联系。”请问这句话是什么意思啊?
我不太懂你问的是什么,反正每次打开就出现这样的几行字:
正在清除系统垃圾文件,请稍等………………
C:\WINDOWS\SYSTEM32\SETA05.tmp
系统检测到危害安全的尝试,请确认您能与对您进行身份验证的服务器联系。

你的垃圾清理程序是DOS批处理吗?

---------------------------
系统垃圾而已,不必惊慌,

用我的把,肯定好用
@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