方法一:
Set wshell=CreateObject("WScript.Shell") wshell.Run """C:\Program Files\360\360se\360se.exe""",5,True Set wshell = Nothing
方法二:
temp="C:\Program Files\360\360se3\编程客栈360se.exe" path = Chr(34) & temp & Chr(34) Set wshell=CreateObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing
方法三:
www.devze.comPublic Const vbQuote = """" temp="C:\Phttp://www.devze.comrogram Files\360\360se3编程客栈360se.exe" path = vbQu编程客栈ote & temp & vbQuote Set wshell=Crea开发者_Go开发teObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing
精彩评论