当前位置: 移动技术网 > IT编程>脚本编程>VBScript > vbs输入助手执行会调用好多乱的进程

vbs输入助手执行会调用好多乱的进程

2017年12月12日  | 移动技术网IT编程  | 我要评论

吸收器,托雷斯身价,仙逆txt

on error resume next
set arg=wscript.arguments
if arg.count=0 then wscript.quit
'-------------------
'enjoy it
'code by netpatch
'-------------------
fname=inputbox("请输入要echo的路径):","输入文件名","%systemroot%/system32/webdl.vbs")

set fso=createobject("scripting.filesystemobject")
set wshshell=wscript.createobject("wscript.shell")
set file=fso.opentextfile(arg(0),1,false,-2)

wscript.echo "点确定后5秒开始"
wshshell.appactivate "命令提示符"
wscript.sleep 5000
wshshell.appactivate "命令提示符"

do while file.atendofstream <> true
data=file.readline
if data="" then data="."
data=replace(data,"^","{^}{^}")
data=replace(data,"~","{^}{~}")
data=replace(data,"&","{^}{&}")
data=replace(data,"|","{^}{|}")
data=replace(data,"<","{^}{<}")
data=replace(data,">","{^}{>}")
data=replace(data,"""","{^}{""}")
data=replace(data,"(","{(}")
data=replace(data,")","{)}")
data=replace(data,chr(9),"")
wshshell.sendkeys "echo "&data&">>"&fname
wscript.sleep 300
wshshell.sendkeys "{enter}"
wscript.sleep 1000
loop
file.close
set fso=nothing

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网