ProcessLauncher.RunToCompletionAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RunToCompletionAsync(String, String) |
啟動新的程式。 當啟動的進程終止時,這個異步函式就會完成。 |
RunToCompletionAsync(String, String, ProcessLauncherOptions) |
啟動新的程式,包括指定的選項。 當啟動的進程終止時,這個異步函式就會完成。 |
RunToCompletionAsync(String, String)
啟動新的程式。 當啟動的進程終止時,這個異步函式就會完成。
public:
static IAsyncOperation<ProcessLauncherResult ^> ^ RunToCompletionAsync(Platform::String ^ fileName, Platform::String ^ args);
/// [Windows.Foundation.Metadata.Overload("RunToCompletionAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<ProcessLauncherResult> RunToCompletionAsync(winrt::hstring const& fileName, winrt::hstring const& args);
[Windows.Foundation.Metadata.Overload("RunToCompletionAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<ProcessLauncherResult> RunToCompletionAsync(string fileName, string args);
function runToCompletionAsync(fileName, args)
Public Shared Function RunToCompletionAsync (fileName As String, args As String) As IAsyncOperation(Of ProcessLauncherResult)
參數
- fileName
-
String
Platform::String
winrt::hstring
要啟動的進程名稱。
- args
-
String
Platform::String
winrt::hstring
執行進程的自變數。
傳回
異步操作完成時,它會包含啟動進程的結束代碼。
- 屬性
Windows 需求
應用程式功能 |
systemManagement
|
備註
此 API 需要使用 IoT systemManagement 功能,並在 IgnorableNamespaces 列表中包含 iot。 用戶可以將下列專案新增至其 Package.appmanifest: <iot:Capability Name="systemManagement"/>
,並將 iot 新增至其現有 IgnorableNamespaces列表。
若要啟動進程,.exe 必須包含在.appx套件中,或註冊在此 API 的允許清單中。 若要將 .exe 新增至允許清單修改 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\EmbeddedMode\ProcessLauncher:AllowedExecutableFilesList,並將可執行檔新增至REG_MULTI_SZ格式化字符串。
例如:
reg ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\EmbeddedMode\ProcessLauncher" /f /v AllowedExecutableFilesList /t REG_MULTI_SZ /d "c:\windows\system32\cmd.exe\0"
另請參閱
適用於
RunToCompletionAsync(String, String, ProcessLauncherOptions)
啟動新的程式,包括指定的選項。 當啟動的進程終止時,這個異步函式就會完成。
public:
static IAsyncOperation<ProcessLauncherResult ^> ^ RunToCompletionAsync(Platform::String ^ fileName, Platform::String ^ args, ProcessLauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("RunToCompletionAsyncWithOptions")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<ProcessLauncherResult> RunToCompletionAsync(winrt::hstring const& fileName, winrt::hstring const& args, ProcessLauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("RunToCompletionAsyncWithOptions")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<ProcessLauncherResult> RunToCompletionAsync(string fileName, string args, ProcessLauncherOptions options);
function runToCompletionAsync(fileName, args, options)
Public Shared Function RunToCompletionAsync (fileName As String, args As String, options As ProcessLauncherOptions) As IAsyncOperation(Of ProcessLauncherResult)
參數
- fileName
-
String
Platform::String
winrt::hstring
要啟動的進程檔名。
- args
-
String
Platform::String
winrt::hstring
指定進程的自變數。
- options
- ProcessLauncherOptions
執行進程的相關選項。
傳回
異步操作完成時,它會包含啟動進程的結束代碼。
- 屬性
Windows 需求
應用程式功能 |
systemManagement
|
備註
此 API 需要使用 IoT systemManagement 功能,並在 IgnorableNamespaces 列表中包含 iot。 用戶可以將下列專案新增至其 Package.appmanifest: <iot:Capability Name="systemManagement"/>
,並將 iot 新增至其現有 IgnorableNamespaces列表。
若要啟動進程,.exe 必須包含在.appx套件中,或註冊在此 API 的允許清單中。 若要將 .exe 新增至允許清單修改 HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\EmbeddedMode\ProcessLauncher:AllowedExecutableFilesList,並將可執行檔新增至REG_MULTI_SZ格式化字符串。
例如:
reg ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\EmbeddedMode\ProcessLauncher" /f /v AllowedExecutableFilesList /t REG_MULTI_SZ /d "c:\windows\system32\cmd.exe\0"