批处理/vbscript 启动/关闭 exe

时间:2022-08-31 09:33:00

启动:

1、批处理 start *.exe

2、VBS   

im program  
program="*.exe" '你的exe路径
set Wshell=CreateObject("Wscript.Shell")  
set oexec=Wshell.Exec(program) 
若想启动某exe后再点击其中的某个按钮:则若此按钮是焦点按钮,则回车键后此exe将运行起来
VBS如下:
 
im program program="*.exe" '你的exe路径 set Wshell=CreateObject("Wscript.Shell") set oexec=Wshell.Exec(program) 
 
wscript.Sleep 1000 Wshell.AppActivate "*.exe"
wscript.Sleep 200 
Wshell.SendKeys "{ENTER}" 
这样就可以了!!
关闭:
 方法一:taskkill /f /t /im 10101103_JKDDZ/JKDDZ_AI.exe
 方法二:wmic process where "name='*.exe'" call terminate
有时,exe采用方法一关不掉,可以采用方法二关闭它