ExecutePrivilegedProcessAsync Method

Vista Bridge Library

[This is preliminary documentation and is subject to change.]

Executes the specified process asynchronously.

Namespace:  Microsoft.SDK.Samples.VistaBridge.Services
Assembly:  VistaBridgeLibrary (in VistaBridgeLibrary.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public static void ExecutePrivilegedProcessAsync(
	string executablePath,
	EventHandler exitedEventHandler
)
Visual Basic (Declaration)
Public Shared Sub ExecutePrivilegedProcessAsync ( _
	executablePath As String, _
	exitedEventHandler As EventHandler _
)
Visual C++
public:
static void ExecutePrivilegedProcessAsync(
	String^ executablePath, 
	EventHandler^ exitedEventHandler
)

Parameters

executablePath
Type: System..::.String
The process to execute.
exitedEventHandler
Type: System..::.EventHandler
The event handler that receives notification when the process exits.

See Also