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