Forum Discussion
Zilverflame
Nov 10, 2016Copper Contributor
Notifications in Groups
Hi all, We have tons of Groups and love it. However, when our users are creating new Groups they often don't set a checkmark in: "Send copies of all group messages and events to members' inboxes." Mem...
- Nov 10, 2016
There's no way of forcing a new default in the UI at present. Instead of creating the group via the UI, you can create it using PowerShell and ensure that all members are subscribed that way by setting the AutoSubscribeNewMembers property to $True (New-Unified Group -AutoSubscribeNewMembers $True...).
Alternatively, you could scan for all groups (on a regular basis) where AutoSubscribeNewMembers is set to $False and set the property to $True
[PS] C:\> Get-UnifiedGroup | ? {$_.AutoSubscribedNewMembers -eq $False } | Set-UnifiedGroup -AutoSubscribeNewMembers $True
As you might have some groups where you don't want autosubscription, a more sophisticated solution would check that a group really wants to have autosubscribe set to True before forcing the matter.
For more details on how to do all of this, see TechNet or read chapter 9 of Office 365 for IT Pros...
TonyRedmond
Nov 10, 2016MVP
There's no way of forcing a new default in the UI at present. Instead of creating the group via the UI, you can create it using PowerShell and ensure that all members are subscribed that way by setting the AutoSubscribeNewMembers property to $True (New-Unified Group -AutoSubscribeNewMembers $True...).
Alternatively, you could scan for all groups (on a regular basis) where AutoSubscribeNewMembers is set to $False and set the property to $True
[PS] C:\> Get-UnifiedGroup | ? {$_.AutoSubscribedNewMembers -eq $False } | Set-UnifiedGroup -AutoSubscribeNewMembers $True
As you might have some groups where you don't want autosubscription, a more sophisticated solution would check that a group really wants to have autosubscribe set to True before forcing the matter.
For more details on how to do all of this, see TechNet or read chapter 9 of Office 365 for IT Pros...
Zilverflame
Nov 14, 2016Copper Contributor
Thanks Tony.
One correction, the attribute is named "AutoSubscribeNewMembers" (removed a "d") :)
Regards Anders
One correction, the attribute is named "AutoSubscribeNewMembers" (removed a "d") :)
Regards Anders
- TonyRedmondNov 14, 2016MVP
Ta. I guess I shall have to remember those blinking parameter names better...
Or just write everything down in a book... oh wait, that's what I have done!
- tony-derricottNov 21, 2016Gold Contributor
Doesn't the following command change an existing non-subscriber to a subscriber?
add-UnifiedGroupLinks -Identity "Group Name" -LinkType Subscribers -Links Email@domain.extension
- ZilverflameNov 25, 2016Copper ContributorPerfect Tony! That is exactly what I was looking for :)
Thanks.