Forum Discussion
Anonymous
Mar 25, 2019Migrate DistributionGroups to O365 Groups
Hi everyone, i don't have that much knowledge in Powershell yet but i just started with the basics and now im needing some help.I really would appreciate it, if anyone would help me. My goal is the...
Manidurai Mohanamariappan
Mar 26, 2019Iron Contributor
Deleted
I have tested your case in my environment and it is working fine. May be PowerShell version is the problem and you can try the simple alternative solution like below and it will add individual user to group
foreach($member in $OnPremVerteilerMember){
Add-UnifiedGroupLinks -Identity $NeueO365Gruppe.Identity -LinkType Members -Links $member.PrimarySMTPAddress
}