¿Cómo puedo iniciar una aplicación usando C #?
Requisitos: debe funcionar en Windows XP y Windows Vista .
He visto una muestra de la muestra de DinnerNow.net que solo funciona en Windows Vista.
¿Cómo puedo iniciar una aplicación usando C #?
Requisitos: debe funcionar en Windows XP y Windows Vista .
He visto una muestra de la muestra de DinnerNow.net que solo funciona en Windows Vista.
Respuestas:
System.Diagnostics.Process.Start()
Método de uso
Mira 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");
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 puede hacer con estos objetos, debe leer la documentación: ProcessStartInfo , Process .
PathTo*.exe
pero no esperaría que funcione. (a) ¿Qué pasa si hay múltiples coincidencias? (b) Espero que el código de Microsoft no permita esto, ya que sería una seguridad débil.
System.Diagnostics.Process.Start("PathToExe.exe");
Si tiene problemas para usar System.Diagnostics como yo, use el siguiente código simple que funcionará sin él:
Process notePad = new Process();
notePad.StartInfo.FileName = "notepad.exe";
notePad.StartInfo.Arguments = "mytextfile.txt";
notePad.Start();
Process
está en System.Diagnostics.
Además, deberá utilizar las Variables de entorno para sus rutas si es posible: http://en.wikipedia.org/wiki/Environment_variable#Default_Values_on_Microsoft_Windows
P.EJ
Hay muchos más echa un vistazo al enlace para obtener una lista más larga.
Simplemente coloque su archivo.exe en la carpeta \ bin \ Debug y use:
Process.Start("File.exe");
Use Process.Start para comenzar un proceso.
using System.Diagnostics;
class Program
{
static void Main()
{
//
// your code
//
Process.Start("C:\\process.exe");
}
}
Prueba esto:
Process.Start("Location Of File.exe");
(Asegúrese de usar la biblioteca System.Diagnostics)