Als «processstartinfo» getaggte Fragen

22
ProcessStartInfo hängt an "WaitForExit"? Warum?
Ich habe folgenden Code: 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 Ich weiß, dass die Ausgabe des Prozesses, den ich starte, ungefähr 7 MB lang ist. Das Ausführen …

12
Batchdatei in C # ausführen
Ich versuche, eine Batch-Datei in C # auszuführen, habe aber kein Glück damit. Ich habe im Internet mehrere Beispiele dafür gefunden, aber es funktioniert bei mir nicht. public void ExecuteCommand(string command) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/c " + command); ProcessInfo.CreateNoWindow = true; ProcessInfo.UseShellExecute …
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.