mardi 23 juin 2015

Visual C# lancement d'un ligne de commande avec fenêtre cachée.

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