Questions marquées «processstartinfo»

187
ProcessStartInfo suspendu à «WaitForExit»? Pourquoi?

J'ai le code suivant: 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...

140
Exécution d'un fichier batch en C #

J'essaye d'exécuter un fichier batch en C #, mais je n'ai pas de chance de le faire. J'ai trouvé plusieurs exemples de le faire sur Internet, mais cela ne fonctionne pas pour moi. public void ExecuteCommand(string command) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo =...