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

22 lines
539 B
PowerShell

<#
.SYNOPSIS
If the group named GroupName1 does not exist, creates a group named GroupName1.
If the group named GroupName1 already exists removes the users that have the usernames
Username1 or Username2 from the group.
#>
Configuration Sample_Group_RemoveMembers
{
[CmdletBinding()]
param ()
Import-DscResource -ModuleName 'PSDscResources'
Group Group1
{
GroupName = 'GroupName1'
Ensure = 'Present'
MembersToExclude = @( 'Username1', 'Username2' )
}
}