
Looks like I'm an idiot. After about an hour the group updated to reflect the changes. Both scripts worked but I wasn't waiting long enough to verify.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have done quite a bit of researching and asking 'Co-Pilot' without any luck. Essentially, I want to do what the title says, which is: Enable 'Send copies of group conversations and events to group members' for the specified group using PowerShell. The groups are all Dynamic User Microsoft 365 groups that were created in the Azure Portal.
Here is the PowerShell script that I used:
$groupName = "group1"
Set-UnifiedGroup $groupName -AutoSubscribeNewMembers
I have also tried this iteration of the script:
$groupName = "group1"
Set-UnifiedGroup -Identity $groupName -AutoSubscribeNewMembers: $true
When running the script, I get the output:
"WARNING: The command completed successfully but no settings of 'group1_asdfag-afga-sdfa-fgaeasdff' have been modified.".
When looking at the group in Exchange, I see that the box labelled 'Send copies of group conversations and events to group members' is still not enabled.
Looks like I'm an idiot. After about an hour the group updated to reflect the changes. Both scripts worked but I wasn't waiting long enough to verify.
It's good to hear that
Hi,@Mark-3345
Thanks for posting your question in the Microsoft Q&A forum.
Great to know that the issue has already been resolved and thanks for sharing the solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others", I'll repost your solution in case you'd like to "Accept" the answer : )
--------------
Issue Symptom:
Customer use PowerShell to enable 'Send copies of group conversations and events to group members' on a dynamic O365 group. Although the command completed successfully, the settings have not been changed.
Set-UnifiedGroup $groupName -AutoSubscribeNewMembers
Resolution:
Theoretically, running the cmdlet takes effect immediately, but customers are advised to wait for some time.