Forum Discussion
Jarkko Seppo Tapani Tornberg
Aug 08, 2016Brass Contributor
Set a security group as a member of unified group
Is there a way to set a security group (or a mail enabled one) to be a member of unified group. This can be done manually of course, but with the ”Add-UnifiedGroupLinks” command the links-parameter c...
VasilMichev
Aug 08, 2016MVP
When you add a security group (or any other type) as member of "modern group", its membership is expanded and the individual members are added as links, not the actual group. In effect, you can do it via this PowerShell example:
Get-DistributionGroupMember blabla | % { Add-UnifiedGroupLinks -Identity blahblah -LinkType members -Links $_.Name }