安静运⾏批处理的vbs脚本1、保存为.vbs
vbs脚本怎么停止
DIM objShell
set ateObject("wscript.shell")
iReturn=objShell.Run(" /C 路径/改成你需要的批处理.bat", 0, TRUE)
2、继续保存.vbs
on Error Resume next
set wshshell=createobject("wscript.shell")
a=wshshell.run(" /C 路径/改成你需要的批处理.bat", 0)
3、继继续保存.vbs
createobject("wscript.shell").run "路径/改成你需要的批处理.bat",0
4、继续再继续保存.vbs
set ateobject("wscript.shell")
ws.run "win.bat /start",vbhide
(其中win.bat为你⾃⼰的批处理名字,⾃⼰改)
逍遥复仇:记得有些杀毒是杀的,你们⾃⼰试试。