Forum Discussion
Turning off email notifications for Office 365 Groups
rpdodds Hello, there are several options to choose from when using the Set-UnifiedGroup cmdlet.
For example.
-UnifiedGroupWelcomeMessageEnabled
-HiddenFromAddressListsEnabled
-HiddenFromExchangeClientsEnabled
-AlwaysSubscribeMembersToCalendarEvents
-AutoSubscribeNewMembers
See this for details about the switches
https://docs.microsoft.com/en-us/powershell/module/exchange/set-unifiedgroup?view=exchange-ps
ChristianBergstrom Thanks!
So if I use:
Set-UnifiedGroup "New O365 Group for Intranet" -AlwaysSubscribeMembersToCalendarEvents:$false -AutoSubscribeNewMembers:$false -HiddenFromAddressListsEnabled:$true -HiddenFromExchangeClientsEnabled -ModerationEnabled:$true -ModeratedBy:poweruser1@domain.com,poweruser2@domain.com,poweruser3@domain.com -SubscriptionEnabled:$false -UnifiedGroupWelcomeMessageEnabled:$false
I'm effectively turning off ALL notification emails to members personal inboxes, hiding it from Outlook/OWA, hiding it from address book/people searches, and setting it so emails to the group or calendar events created in the group have to be approved by powerusers 1, 2 or 3. Is that right?
If I'm going to create 30 odd new groups, should I create the groups first, then run this command and add members last?