Oct 16 2023 08:59 AM
Hello,
I am looking for a way to automatically set the "Following" setting "Receive only replies to you" for all existing members of a MS Teams group. Preferably, I would like to have this setting be auto selected for all new members as well.
I am comfortable working with MS Graph or PowerShell, but have had trouble finding any information on how to do this.
This is the setting as shown in Outlook:
Nov 06 2023 06:34 AM
Hi @CamCov,
Microsoft has not yet published any official documentation about setting the "Receive only replies to you" setting for all members of a Microsoft Teams group using Microsoft Graph or PowerShell.
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.
If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
Sep 18 2024 08:56 PM
This can now be achieved using the PowerShell ExchangeOnline module through a method I have recently discovered.
For existing users, execute the command below:
Get-UnifiedGroupLinks -Identity "<GroupName>" -LinkType Members |
ForEach-Object { Remove-UnifiedGroupLinks -Identity "<GroupName>" -LinkType Subscribers -Links $_.PrimarySmtpAddress -Confirm:$false }
For new users, execute the command below:
Set-UnifiedGroup -Identity "<GroupName>" -AlwaysSubscribeMembersToCalendarEvents:$false