ProcessStartInfo.UseShellExecute Propiedad

Definición

Obtiene o establece un valor que indica si se va a usar el shell del sistema operativo para iniciar el proceso.

public bool UseShellExecute { get; set; }

Valor de propiedad

true si el shell se debe usar al iniciar el proceso; false si el proceso debería crearse directamente desde el archivo ejecutable. El valor predeterminado es true en las aplicaciones de .NET Framework y false en las aplicaciones de .NET Core.

Excepciones

Se produce un intento de establecer el valor en true en aplicaciones de la Plataforma Universal de Windows (UWP).

Ejemplos

// Run "csc.exe /r:System.dll /out:sample.exe stdstr.cs". UseShellExecute is false because we're specifying
// an executable directly and in this case depending on it being in a PATH folder. By setting
// RedirectStandardOutput to true, the output of csc.exe is directed to the Process.StandardOutput stream
// which is then displayed in this console window directly.
using (Process compiler = new Process())
{
    compiler.StartInfo.FileName = "csc.exe";
    compiler.StartInfo.Arguments = "/r:System.dll /out:sample.exe stdstr.cs";
    compiler.StartInfo.UseShellExecute = false;
    compiler.StartInfo.RedirectStandardOutput = true;
    compiler.Start();

    Console.WriteLine(compiler.StandardOutput.ReadToEnd());

    compiler.WaitForExit();
}

Comentarios

Para obtener más información sobre esta API, consulte Comentarios de api complementarias para ProcessStartInfo.UseShellExecute.

Se aplica a

Producto Versiones
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Consulte también