Forum Discussion
How to remove the Welcome Message when a new member joins a group.
- 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>
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>
This is exactly what I am looking for, just to confirm, this is a Cmdlet run at Windows PowerShell - correct?
Actually, I did add the "Identify" parameter and tried the following command, but it was not recognized under PowerShell, any ideas where I need to correct this?
PS C:\> Set-UnifiedGroup -Identify "MyGroupName" -UnifiedGroupWelcomeMEssageEnable:$false
Error:
Set-UnifiedGroup : The term 'Set-UnifiedGroup' is not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try
again.
At line:1 char:1
+ Set-UnifiedGroup -Identify "MyGroupName" - ...
+ ~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Set-UnifiedGroup:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
- VasilMichevJul 26, 2017MVP
You need to connect to ExO PowerShell first: https://technet.microsoft.com/en-us/library/jj984289(v=exchg.160).aspx
- Walter OswaldJul 30, 2017Copper Contributor
Worked as you guided - thanks a lot!