I\'ve got this working line of code in Windows Batch
start \"\" /wait /i \"C:\\Program Files\\Sandboxie\\Start.exe\" /box:NetBeans /wait \"C:\\Program Files\
I like to use the following system to embed quotes :
strCommand = Quotes("C:\Program Files\Sandboxie\Start.exe") & _
" /box:NetBeans /wait " & _
Quotes("C:\Program Files\NetBeans 7.3\bin\netbeans64.exe")
Function Quotes(ByVal strValue)
Quotes = Chr(34) & strValue & Chr(34)
End Function
It's a lot easier to read.