User Profile
Mgutierrez215
Copper Contributor
Joined 6 years ago
User Widgets
Recent Discussions
SDS is not populating groups with students
I'm encountering an issue with SDS where students are not being added to the groups it's creating. The groups and teams are created properly, teachers are added to the group as well. They just do not contain any students. Classes started today. We are syncing through the PowerSchool API. Has anyone else encountered this?1.3KViews0likes3CommentsRe: Groups are created by SDS but not teams
Milkamax We can create a team from a group by selecting "other" as the type in the app, but I don't think it creates the Team in the same way as if you wanted to create a class. That's where the "https://support.office.com/en-us/article/create-a-class-team-in-microsoft-teams-preview-fae422eb-58b7-4431-9ff2-a4b9b6ae7c5b?ui=en-US&rs=en-US&ad=US" feature that @NickBeagin mentioned comes in. That feature is still in preview at the time of this post though. Thank you for the PowerShell offer. Luckily I was able to resolve my issue. I posted the solution to my issue in an earlier reply.9.6KViews0likes0CommentsRe: Groups are created by SDS but not teams
NickBeagin That Is supposed to be the correct behavior if your SDS profile was created before the deadline specified in the article. Ours was created a day before so over half of our Teams did get created. The other half had errors that required us to do a reset of the sync. No Teams have been created by SDS after that. I ended up using PowerShell to create the missing teams. For those curious: You will need the Azure AD and Microsoft Teams PowerShell modules installed. Connect to both Azure AD and Microsoft Teams using your O365 admin credentials. SDS does not add a description to the group when created, so we put all groups with empty descriptions into a variable. A description is added to the group when a Team is create for it. We further reduced the list of groups in the variable to only those we need. All of our section groups have the semester and period in the name, so we use that as our filter. Anyone else's names may vary and will need to adjust for it. We then create a team for each group. Connect-AzureAD Connect-MicrosoftTeams $tgroups=Get-AzureADGroup -All $true | Where-Object {$_.Description -eq $null} $tgroups = $tgroups | Where-Object { $_.DisplayName -like '*-S2-P*' } $tgroups | ForEach-Object {new-team -group $_.objectid}9.8KViews1like1CommentRe: Groups are created by SDS but not teams
NickBeagin Thanks for the tip. It helped me find the reason why teams are no longer created automatically. Microsoft made changes to the provisioning behavior. Teams are no longer created when data is synced using SDS. Teachers must create a new team and then use the group to "assist" them with adding the students. https://docs.microsoft.com/en-us/SchoolDataSync/changes-to-class-teams-provisioning I Truly hope this create class from group feature rolls out soon.9.7KViews0likes5Comments
Recent Blog Articles
No content to show