共用方式為


啟動多個進程

描述

此範例示範如何使用 ProcessSet 複合資源來確保多個進程正在執行。

[確定] 設定為 Present[路徑] 設定為 和 C:\TestPath\TestProcess.exe 的陣列 C:\Windows\System32\cmd.exe 時,如果資源尚未執行,則資源會啟動 cmd.exeTestProcess.exe 不含任何引數。

使用 Invoke-DscResource

Cmdlet Invoke-DscResource 不支援叫用複合資源。 請改用 WindowsProcess 資源

使用組態

此程式碼片段示範如何使用資源區塊來定義 , ConfigurationProcessSet 以確保 cmd.exeTestProcess.exe 進程正在執行。

Configuration Start {
    Import-DscResource -ModuleName 'PSDscResources'

    Node localhost {
        ProcessSet ExampleProcessSet {
            Path   = @(
                'C:\Windows\System32\cmd.exe'
                'C:\TestPath\TestProcess.exe'
            )
            Ensure = 'Present'
        }
    }
}