用vbs生成bat文件?直接用fso,太简单了。
要生成一个bat临时文件还不如干脆直接用vbs- CreateObject("WScript.Shell").Run "cmd /c tasklist|findstr VPN代理.exe||start VPN代理.exe",0
复制代码 或者- if GetObject("winmgmts:").ExecQuery("Select * from Win32_Process Where Name = 'VPN代理.exe'").Count=0 then
- CreateObject("WScript.Shell").Run "VPN代理.exe"
- else
- WScript.Quit
- end if
复制代码
|