相信大家对这个东西都很熟悉
DNF掉线数据清理
.bat 是批处理文件。 通俗的说就是一次性批量处理很多操作的文件。
之前钩子傻瓜操作的也是这种。
下面是521DNF 的1.3版 - -, 的代码, 知道的同学一看就知道真正处理清除的是什么.
\
不明白的同学, 我只能告诉你, 删除的只是垃圾文件. so..
------------------------------------------------分割线---------------------------------------------
@echo off
echo 521DNF外挂网(521dnf.cn) 正在清理地下城与勇士掉线数据......
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 521DNF外挂网(521dnf.cn) 地下城与勇士掉线数据清理完毕!
echo. & pause
------------------------------------------------------------------------分割线---------------------------------------------
今天某同学和我说每次运行G 游戏前,都要运行一遍这个. 我笑了.
希望大家了解下.