Skip to content

Commit 690b528

Browse files
authored
Merge pull request #11638 from SaritaBehera/saritabehera/new-setting-UpdateParentInformation
Updating the Set-CsTeamsEducationConfiguration documention to incorporate the new education setting UpdateParentInformation.
2 parents 4f4727d + 33a937f commit 690b528

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

teams/teams-ps/teams/Get-CsTeamsEducationConfiguration.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Get-CsTeamsEducationConfiguration
5-
author: prrathna
6-
ms.author: prrathna
5+
author: SaritaBehera
6+
ms.author: saritabehera
77
online version: https://learn.microsoft.com/powershell/module/teams/get-csteamseducationconfiguration
88
schema: 2.0.0
99
---
@@ -29,14 +29,15 @@ You must be a Teams Service Administrator or a Global Administrator for your org
2929
## Examples
3030

3131
### Example 1
32-
In this example, the organization has Email selected as the preferred contact method used for parent communication invitations.
32+
In this example, the organization has Email selected as the preferred contact method used for parent communication invitations, also the parents contact information is Enabled by educators.
3333

3434
```powershell
3535
Get-CsTeamsEducationConfiguration
3636
```
3737
```Output
3838
Identity : Global
3939
ParentGuardianPreferredContactMethod : Email
40+
UpdateParentInformation. : Enabled
4041
```
4142

4243
## PARAMETERS

teams/teams-ps/teams/Set-CsTeamsEducationConfiguration.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Set-CsTeamsEducationConfiguration
5-
author: prrathna
6-
ms.author: prrathna
5+
author: SaritaBehera
6+
ms.author: saritabehera
77
online version: https://learn.microsoft.com/powershell/module/teams/set-csteamseducationconfiguration
88
schema: 2.0.0
99
---
@@ -19,6 +19,7 @@ This cmdlet is used to manage the organization-wide education configuration for
1919
```powershell
2020
Set-CsTeamsEducationConfiguration
2121
[-ParentGuardianPreferredContactMethod <String>]
22+
[-UpdateParentInformation <String>]
2223
[-WhatIf]
2324
[-Confirm]
2425
[<CommonParameters>]
@@ -46,6 +47,20 @@ In this example, SMS is set as the preferred contact method used for parent comm
4647
Set-CsTeamsEducationConfiguration -ParentGuardianPreferredContactMethod SMS
4748
```
4849

50+
### Example 3
51+
In this example, updating parents contact information is enabled by educators across the organization.
52+
53+
```powershell
54+
Set-CsTeamsEducationConfiguration -UpdateParentInformation Enabled
55+
```
56+
57+
### Example 4
58+
In this example, updating parents contact information is disabled by educators across the organization.
59+
60+
```powershell
61+
Set-CsTeamsEducationConfiguration -UpdateParentInformation Disabled
62+
```
63+
4964
## PARAMETERS
5065

5166
### -ParentGuardianPreferredContactMethod
@@ -59,6 +74,18 @@ Accept pipeline input: False
5974
Accept wildcard characters: False
6075
```
6176
77+
### -UpdateParentInformation
78+
Indicates whether updating parents contact information is Enabled/Disabled by educators. Possible values are 'Enabled' and 'Disabled'.
79+
80+
```yaml
81+
Type: String
82+
Position: Named
83+
Default value: Enabled
84+
Accept pipeline input: False
85+
Accept wildcard characters: False
86+
```
87+
88+
6289
### CommonParameters
6390
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
6491

0 commit comments

Comments
 (0)