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>
VasilMichev
Jul 26, 2017MVP
You need to connect to ExO PowerShell first: https://technet.microsoft.com/en-us/library/jj984289(v=exchg.160).aspx
Walter Oswald
Jul 30, 2017Copper Contributor
Worked as you guided - thanks a lot!