Executing an exe file or creating a process

This code shows how to execute an exe file



ProcessStartInfo psInfo = new ProcessStartInfo(file, arguments);
psInfo.RedirectStandardOutput = true;
// To redirect, we must not use shell execute.
psInfo.UseShellExecute = false;
// Create and execute the process.
Process objProcess = Process.Start(psInfo);
objProcess.Start();
objProcess.WaitForExit(3000);


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: