Files
PowerShell-PSDscResources/Examples/Sample_ProcessSet_Start.ps1
T
Simon Heather 2a7b5eef2b Revert "Fix example dir BOM files"
This reverts commit 590a77441f.
2019-04-28 18:49:16 +01:00

19 lines
447 B
PowerShell

<#
.SYNOPSIS
Starts the processes with the executables at the file paths C:\Windows\cmd.exe and
C:\TestPath\TestProcess.exe with no arguments.
#>
Configuration Sample_ProcessSet_Start
{
[CmdletBinding()]
param ()
Import-DscResource -ModuleName 'PSDscResources'
ProcessSet ProcessSet1
{
Path = @( 'C:\Windows\System32\cmd.exe', 'C:\TestPath\TestProcess.exe' )
Ensure = 'Present'
}
}