I am writing a C# program that call a self-extracting archive made using 7-zip. When the sfx file is called in
System.Diagnostics.Process.Start(sfx_exe);
The prompt for the directory to extract it appears. I would like to feed the directory right into the command so that the file will not require user input to extract.
I've read about using other installers but would ideally like to just pass a command into the execution of the sfx file.