Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = string_command;
p.Start();
p.WaitForExit(); // Attend la fin de l'exécution avant de continuer dans le code
Aucun commentaire:
Publier un commentaire