I can run a command line process using process.start().
I can provide input using standard input. After that when the process demands user input again, how can my program know and pass the input to that exe?
I can run a command line process using process.start() . I can provide input
Share
There’s an example here that sounds similar to what you need, using
Process.StandardInputand aStreamWriter.hope that helps