VBS中解决路径带空格的三种方法

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

 

 

 

Public Const vbQuote = """"

temp="C:\Program Files\360\360se3\360se.exe"

path = vbQuote & temp & vbQuote

Set wshell=CreateObject("WScript.Shell")

wshell.Run path,1,True

Set wshell = Nothing

原文地址:https://www.cnblogs.com/BeyondTechnology/p/1936514.html