引号未正确转义导致字符串被错误终止,请尝试此操作;
Dim objShell
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("""C:\Program Files\TSVN\bin\TProc.exe""/command:repobrowser")
Set objShell = Nothing
该字符串相当于
"C:\Program Files\TSVN\bin\TProc.exe"/command:repobrowser
在VBScript中为字符串添加引号