The script adds members selected in a custom command parameter to the target group. To execute the script, create a custom command configured for the Group object type.
Parameters:
- $membersParameterName - Specifies the name of the Directory object picker parameter used to select members. The parameter name must be specified with the param- prefix.
- $separator – Specifies a separator (e.g. semicolon) for members in the parameter.
- $pipelined - Set to $true to add members to the group through Adaxes pipeline to create log records, apply business rules, security roles, etc. Set to $false to perform group membership update directly in AD (Adaxes functionality will not be applied).
PowerShell
$membersParameterName = "param-Members" # TODO: modify me
$separator = ";" # TODO: modify me
$pipelined = $True # TODO: modify me
# Bind to the target group
$group = $Context.BindToObjectByDNEx("%distinguishedName%", $pipelined)
# Get parameter value
$membersToAdd = $Context.GetParameterValue($membersParameterName)
# Update the group membership
foreach ($memberDn in $membersToAdd.Split($separator))
{
if(-not $group.IsMember("Adaxes://$memberDn"))
{
$group.Add("Adaxes://$memberDn")
}
}