Commands › Microsoft Teams

Set-CsTeamsEducationConfiguration

Microsoft Teams MicrosoftTeams Set-*

This cmdlet is used to manage the organization-wide education configuration for Teams.

Quick start script

# Set-CsTeamsEducationConfiguration — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsEducationConfiguration
$before | Format-List

# 3. Make the change (dry run first)
Set-CsTeamsEducationConfiguration  -WhatIf
Set-CsTeamsEducationConfiguration

# 4. Verify and diff
$after = Get-CsTeamsEducationConfiguration
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Set-CsTeamsEducationConfiguration [-ParentGuardianPreferredContactMethod <String>]
 [-UpdateParentInformation <String>]  [-EduGenerativeAIEnhancements <String>] [-Identity <String>]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-ParentGuardianPreferredContactMethod String Indicates whether Email or SMS is the preferred contact method used for parent communication invitations. Possible values are 'Email' and 'SMS'.
-UpdateParentInformation String Indicates whether updating parents contact information is Enabled/Disabled by educators. Possible values are 'Enabled' and 'Disabled'.
-EduGenerativeAIEnhancements String Controls whether generative AI enhancements are enabled in the education environment.
-Identity String Specifies the identity of the education configuration to set.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.