Forum Discussion
anubhav1987
Apr 26, 2021Copper Contributor
disable teams notification when a user is added
Hello world, Whenever i add somebody as member to a team(Using Graph APIs). A notification is displayed on the screen of the newly added member. The business requirement states that this memb...
Michal_Z
Aug 16, 2023Brass Contributor
Hi anubhav1987
Have you tried to disable the Welcome Message on the group level?
You can give it a try using PowerShell but you need an Exchange admin role to be able to do this:
# import module ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement
# connect to Exchnge Online
Connect-ExchangeOnline -UserPrincipalName <UPN> [-ExchangeEnvironmentName <Value>] [-ShowBanner:$false] [-DelegatedOrganization <String>] [-SkipLoadingFormatData]
# check if the WelcomeMessageEnabled is true
Get-UnifiedGroup <group ID>|fl WelcomeMessageEnabled
# set WelcomeMessageEnabled to False
Get-UnifiedGroup <group ID> | Set-UnifiedGroup -UnifiedGroupWelcomeMessageEnabled:$false
It looks that this works on my side, but I am not sure if this is not yet another option that needs to be set. I haven't found anything in the Teams management settings.
Let me know if this worked or how did you solved if you found another solution.
/Mike
GuilleBas
Apr 30, 2024Brass Contributor
Same issue here. We have tried disabling the welcome message but that only helps with the welcome email you receive informing you've been added to a 365 group. It does not affect the Teams activity notification.