Files
PowerShell-PSDscResources/Examples/Sample_GroupSet_AddMembers.ps1
T
2019-04-28 18:51:33 +01:00

24 lines
713 B
PowerShell

<#
.SYNOPSIS
If the groups named GroupName1 and Administrators do not exist, creates the groups named
GroupName1 and Administrators and adds the users with the usernames Username1 and Username2
to both groups.
If the groups named GroupName1 and Administrators already exist, adds the users with the
usernames Username1 and Username2 to both groups.
#>
Configuration Sample_GroupSet_AddMembers
{
[CmdletBinding()]
param ()
Import-DscResource -ModuleName 'PSDscResources'
GroupSet GroupSet
{
GroupName = @( 'Administrators', 'GroupName1' )
Ensure = 'Present'
MembersToInclude = @( 'Username1', 'Username2' )
}
}