diff --git a/modules/AdminToolbox.ActiveDirectory/Public/Copy-GroupMembersToGroup.ps1 b/modules/AdminToolbox.ActiveDirectory/Public/Copy-GroupMembersToGroup.ps1 index 679c23e2..de5a150c 100644 --- a/modules/AdminToolbox.ActiveDirectory/Public/Copy-GroupMembersToGroup.ps1 +++ b/modules/AdminToolbox.ActiveDirectory/Public/Copy-GroupMembersToGroup.ps1 @@ -1,22 +1,25 @@ <# -.SYNOPSIS + .SYNOPSIS Copies the enabled members of a source group to a target group. -.DESCRIPTION + .DESCRIPTION This function copies the enabled members of a source group to a target group. The source group is specified by its distinguished name, and the target group is specified by its distinguished name. -.PARAMETER sourceGroupDN + .PARAMETER sourceGroupDN The distinguished name of the source group. -.PARAMETER targetGroupDN + .PARAMETER targetGroupDN The distinguished name of the target group. -.EXAMPLE + .EXAMPLE Copy-GroupMembersToGroup -sourceGroupDN "CN=SourceGroup,OU=Groups,DC=contoso,DC=com" -targetGroupDN "CN=TargetGroup,OU=Groups,DC=contoso,DC=com" Copies the enabled members of the SourceGroup to the TargetGroup. + +.Link + https://github.com/TheTaylorLee/AdminToolbox #> function Copy-GroupMembersToGroup {