¿Lanzar una aplicación (.EXE) desde C#?
¿Cómo puedo iniciar una aplicación usando C#?
Requisitos: Debe funcionar en Windows XP y Windows Vista .
He visto una muestra de DinnerNow.net que sólo funciona en Windows Vista.
Aceptado
Aquí hay un fragmento de código útil:
using System.Diagnostics;
// Prepare the process to run
ProcessStartInfo start = new ProcessStartInfo();
// Enter in the command line arguments, everything you would enter after the executable name itself
start.Arguments = arguments;
// Enter the executable to run, including the complete path
start.FileName = ExeName;
// Do you want to show a console window?
start.WindowStyle = ProcessWindowStyle.Hidden;
start.CreateNoWindow = true;
int exitCode;
// Run the external process & wait for it to finish
using (Process proc = Process.Start(start))
{
proc.WaitForExit();
// Retrieve the app's exit code
exitCode = proc.ExitCode;
}
Hay mucho más que puedes hacer con estos objetos, deberías leer la documentación: ProcessStartInfo , Process .
Método de uso System.Diagnostics.Process.Start()
.
Consulte este artículo sobre cómo usarlo.
Process.Start("notepad", "readme.txt");
string winpath = Environment.GetEnvironmentVariable("windir");
string path = System.IO.Path.GetDirectoryName(
System.Windows.Forms.Application.ExecutablePath);
Process.Start(winpath + @"\Microsoft.NET\Framework\v1.0.3705\Installutil.exe",
path + "\\MyService.exe");
System.Diagnostics.Process.Start("PathToExe.exe");
System.Diagnostics.Process.Start( @"C:\Windows\System32\Notepad.exe" );