Why this command wont execute the path properly?
The path have spaces, but with the path inside quotes, it was suposed to work.
Why it's not reading the fully path?
Path:
'C:\Users\Administrador\documents\visual' is not recognized as an internal or external command
Dim myProcess As Process = New Process()
myProcess.StartInfo.FileName = "cmd.exe"
myProcess.StartInfo.Arguments = "/K echo " & Chr(34) & currPath & "\RABCDAsm\rabcasm.exe" & Chr(34)
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal
myProcess.StartInfo.CreateNoWindow = False
myProcess.Start()
myProcess.WaitForExit(60000)
If Not myProcess.HasExited Then
myProcess.Kill()
End If
myProcess.Close()