Forum Discussion
Jason Hopp
Mar 24, 2017Brass Contributor
How to remove the Welcome Message when a new member joins a group.
We are moving from an on-premise Exchange 2013 environment (using Hybrid) and we have to move our DLs to the cloud. I can create them through powershell as a distribution group, but that does not wr...
- Mar 28, 2017
You can use the following command to suppress the welcome message for any new users added to the group as a member. The default value will be set to true for this parameter. So you will need to pass "false" as the value to suppress the welcome message.
Set-UnifiedGroup <groupname> -UnifiedGroupWelcomeMessageEnabled:$<true/false>
dilipmenon
Nov 16, 2022Copper Contributor
-UnifiedGroupWelcomeMessageEnabled:$false doesnt seem to work anymore.
eneto231
Apr 10, 2024Copper Contributor
I tried it today, and it worked well. The user didn't get the notification.
Set-UnifiedGroup -Identity "Hello World" -UnifiedGroupWelcomeMessageEnabled:$false
Set-UnifiedGroup -Identity "Hello World" -UnifiedGroupWelcomeMessageEnabled:$false
- Felix_D3Oct 24, 2024Copper ContributorIt works for me too
Set-UnifiedGroup -Identity $teamName -UnifiedGroupWelcomeMessageEnabled:$false
I can check the setting for the group but then I have to look for "WelcomeMessageEnabled" instead.
Get-UnifiedGroup -Identity $teamName | Select-Object WelcomeMessageEnabled
I have not yet found a way to do this via Graph API. It would be better!