Als «processstartinfo» getaggte Fragen

186
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 =

139
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...