I had seen in lots of forums, where the developers are asking how to pass the arguments when they call exe within the another application in.NET. which is quite easy.
{codecitation class="brush: c#; gutter: true;" width="700px"}
Process process = new Process(); process.StartInfo = new ProcessStartInfo("abc.exe"); process.StartInfo.Arguments = "folderpath "; // if you need suply multiple arguments you need put space "A B" process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; {/codecitation} |