CreateObject("WScirpt.Shell").Run """E:\bin\jsq.bat"""
'三对双引号
path="E:\bin\jsp.bat"
CreateObject("WScirpt.Shell").Run chr(34) & path & chr(34),0
set ws=createobject("wscript.shell")
ws.run """E:\bin\jsp.bat"""
试一下这个。
Dim wsh
path = "E:\bin\jsq.bat"
Set wsh = CreateObject("wscript.shell")
wsh.Run (path)
Set wsh = nothing