I\'ve seen similar examples, but can\'t find something exactly like my problem.
I need to run a command like this from C#:
C:\\FOLDER\\folder with sp
Try this
ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.CreateNoWindow = false; startInfo.UseShellExecute = false; startInfo.FileName = "\"C:\\FOLDER\\folder with spaces\\OTHER_FOLDER\\executable.exe\""; startInfo.Arguments = "p1=hardCodedv1 p2=v2"; Process.Start(startInfo);