mercoledì 23 ottobre 2013

C# Starting and stopping a process

Nel caso che si vuole avviare un processo (esempio internet Explorer) e dopo n secondi chiuderlo, il frammento qui di seguito illustra tale tecnica.

                    Process proc = new Process();

                    proc.StartInfo.FileName = "iexplore.exe";

                    proc.StartInfo.Arguments = "www.sito.it";

                    proc.Start();

                    System.Threading.Thread.Sleep(4000);

                    proc.Kill(); 

Nessun commento: