mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
19 lines
444 B
PowerShell
19 lines
444 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'
|
|
}
|
|
}
|