Set wshell=CreateObject("WScript.Shell")wshell.Run """C:Program Files360360se360se.exe""",5,TrueSet wshell = Nothing方法二:
temp="C:Program Files360360se3360se.exe"path = Chr(34) & temp & Chr(34)Set wshell=CreateObject("WScript.Shell")wshell.Run path,1,TrueSet wshell = Nothing方法三:
Public Const vbQuote = """"temp="C:Program Files360360se3360se.exe"path = vbQuote & temp & vbQuoteSet wshell=CreateObject("WScript.Shell")wshell.Run path,1,TrueSet wshell = Nothing