Forum Discussion
Jack_Lai_HK
May 27, 2022Copper Contributor
*How to disable the MS Teams email notification function as a sender while scheduling a meeting*
Dear All, I am handling some large groups in MS Teams and the email notification will be sent to every member while I schedule every meeting in the group, to the members even no eligible to atte...
StevenC365
May 30, 2022MVP
Hi Jack_Lai_HK
I assume this is related to Channel meetings in a specific Team, whether members of the Team get notified or not depends on how the Team/Group was created. If it was created as a Team they won't be notified, but if it was created as an M365 Group then had Teams added then auto-subscription may be left enabled.
To change it we can set he default for new members through Exchange admin, but we will have to use PowerShell to reset all the existing users.
1. In Exchange admin find the group and clear the option for "Send copies of group conversations and events to group members"
2. From Exchange PowerShell
$Team = "2019 Bonus"
$Members = Get-UnifiedGroupLinks -LinkType Members -Identity $Team
Foreach ($Member in $Members) {
Remove-UnifiedGroupLinks -LinkType Subscribers -Links $Member.PrimarySmtpAddress -Identity $Team -Confirm:$false
}
More details on this script at PowerShell: remove all subscriptions on a Microsoft 365 group - Yannick Reekmans - Building things on Microsoft 365, Dynamics 365, Power Platform and Azure