"subscribers list"
1 TopicTeams Channel Calendar App
Hi, I've been playing about with the subscribers list of a Microsoft Teams group settings. I have found a way to clear the subscribers list as the feedback from people is that it is a bit annoying to receive a copy of the calendar entry in their Outlook inbox. This is the script I am using $Group = "test@domain.onmicrosoft.com" Get-UnifiedGroupLinks $Group -LinkType Member | % {Remove-UnifiedGroupLinks -Identity $Group -LinkType subscriber -Links $_.Guid.toString() -Confirm:$false} But I have noticed a couple of things : 1. If I create the calendar entry I still receive a notification of the entry and when it is also cancelled even though I am not in the subscribers list. Other people in the MS Team do not receive the entry. Is there a way to stop this? 2. New members that get added into the Team get automatically added into the subscribers list. I could run the script nightly for example, but is there a way to default this so new members do not get auto added to the subscribers list?Solved3.2KViews1like6Comments