Forum Discussion
Send copies of group conversations and events to group members inboxes
Hi,
I would like update my office 365 groups with this parameter automatically through powershell but with Set-UnifiedGroup -SubscriptionEnabled but this don't work. I have only the notifications within the group box of member and not within his mailbox. It's ok, if I update this parameter in admin office 365 manually but I would like to configure this one on every groups who existing and the new ones. Do you have an solution ? regards
ChristianBergstrom thank's for your help, after to have tested, for to change this parameter, I have combined two options : firstly activate -AutoSubscribeNewMembers and -SubscriptionEnabled at true and secondly update a member in subscriber with Add-UnifiedGroupLinks have a nice day
8 Replies
- ChristianBergstromSilver ContributorHi, try using -AutoSubscribeNewMembers switch. Bear in mind the following though..
”Only users that are added to the group after you enable this setting are automatically subscribed to the group.”
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps- SebastienHeCopper Contributor
ChristianBergstrom Hi thank you for your answer but I have already tried and this don't work very well, the parameter who work at 100% is that within the screenshot below i would like to activate this one on every groups but i don't find that in set-unifiedgroup, set-team, ... thank you for your help
- StarFoxMcCloudXCopper Contributor
SebastienHe I know this is old at this point, but I wanted to share the command that worked for me:
For all Microsoft 365 groups:
Get-UnifiedGroup | Set-UnifiedGroup -AutoSubscribeNewMembers:$True
For a specific Microsoft 365 group:
Set-UnifiedGroup GroupName -AutoSubscribeNewMembers:$True