Jump to content

Recommended Posts

Posted

Before I log a support case with Microsoft, has anyone been having problems with teachers emailing their class Teams this year? We have the usual Salamander & SDS setup and make sure all class Teams have the 'Send copies of team email & events to team members' inbox' box ticked. However the emails seem to just disappear. A message trace says the distribution list was expanded, but none of the student actually received the email.

Posted

Salamander told us last year that SDS has changed and now provisions the members explicitly  as "members" not "subscribers" overriding whatever it set at the team level.

 

Their only fix was for us to give them a GA account. So instead we just run a script to made all members subscribers. 

$classteams = Get-UnifiedGroup -Anr "Section_2024"
foreach ($class in $classteams) {
    $class.PrimarySmtpAddress
    add-unifiedgrouplinks  -identity $class -links (Get-UnifiedGroupLinks $class.PrimarySmtpAddress -LinkType member) -linktype subscriber
    set-unifiedgroup -identity $class.PrimarySmtpAddress -AutoSubscribeNewMembers:$True
}

You need to rerun it when class memberships change (or at least you did last year). There's probably a way more efficient way of doing that.

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...