Domande taggate «processstartinfo»

22
ProcessStartInfo sospeso su "WaitForExit"? Perché?
Ho il codice seguente: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; info.RedirectStandardOutput = true; info.UseShellExecute = false; System.Diagnostics.Process p = System.Diagnostics.Process.Start(info); p.WaitForExit(); Console.WriteLine(p.StandardOutput.ReadToEnd()); //need the StandardOutput contents So che l'output del processo che sto iniziando è lungo circa 7 MB. Eseguendolo nella console di …

12
Esecuzione del file batch in C #
Sto cercando di eseguire un file batch in C #, ma non ho fortuna a farlo. Ho trovato più esempi su Internet mentre lo faccio, ma non funziona per me. public void ExecuteCommand(string command) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/c " + command); ProcessInfo.CreateNoWindow …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.