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

22 lines
542 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' )
}
}