GSM7224 Geschrieben 27. Juni 2012 Geschrieben 27. Juni 2012 Hallo ich möchte über meine C# Konsolenanwendung einen CMD Befehl ausführen habe das über die Anweisung System.Diagnostics.Process.Start("cmd", "/c " + "ipconfig"); gemacht. Allerdings schließt er danach immer sofort das Fenster woran liegts? Was muss ich eventuell noch hinzufügen? Danke schon mal...
Klotzkopp Geschrieben 27. Juni 2012 Geschrieben 27. Juni 2012 Allerdings schließt er danach immer sofort das Fenster woran liegts?Völlig normales Verhalten für Konsolenprogramme. Nimm mal /k statt /c.
mepp Geschrieben 27. Juni 2012 Geschrieben 27. Juni 2012 Also ich mach das immer mit: public static string ShellExecute(string cmd, string args) { Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = cmd; p.StartInfo.Arguments = args; p.StartInfo.CreateNoWindow = true; //required to capture standard output p.StartInfo.RedirectStandardOutput = true; p.StartInfo.UseShellExecute = false; p.Start(); p.WaitForExit(); //read the command line output StreamReader sr = p.StandardOutput; return (sr.ReadToEnd()); }
Empfohlene Beiträge
Erstelle ein Benutzerkonto oder melde Dich an, um zu kommentieren
Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können
Benutzerkonto erstellen
Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!
Neues Benutzerkonto erstellenAnmelden
Du hast bereits ein Benutzerkonto? Melde Dich hier an.
Jetzt anmelden