Skip to content

Commit bbada4b

Browse files
authored
Merge pull request #10452 from MicrosoftDocs/main
Publish main to live on 2/10 @ 10:30 am
2 parents 17cb68c + 9cf11b7 commit bbada4b

File tree

2 files changed

+49
-7
lines changed

2 files changed

+49
-7
lines changed

teams/teams-ps/teams/New-CsTeamsEnhancedEncryptionPolicy.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Use this cmdlet to create a new Teams enhanced encryption policy.
1717
## SYNTAX
1818

1919
```
20-
New-CsTeamsEnhancedEncryptionPolicy [-Description <Object>] [-CallingEndtoEndEncryptionEnabledType <Object>]
20+
New-CsTeamsEnhancedEncryptionPolicy [-Description <Object>] [-CallingEndtoEndEncryptionEnabledType <Object>] [-MeetingEndToEndEncryption <Object>]
2121
[[-Identity] <Object>] [-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
2525
Use this cmdlet to create a new Teams enhanced encryption policy.
2626

27-
The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently.
27+
The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently.
2828

2929
## EXAMPLES
3030

@@ -37,7 +37,7 @@ Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTea
3737

3838
### EXAMPLE 2
3939
```PowerShell
40-
PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy -CallingEndtoEndEncryptionEnabledType DisabledUserOverride
40+
PS C:\> New-CsTeamsEnhancedEncryptionPolicy -Identity ContosoPartnerTeamsEnhancedEncryptionPolicy -CallingEndtoEndEncryptionEnabledType DisabledUserOverride -MeetingEndToEndEncryption DisabledUserOverride
4141
```
4242

4343
Creates a new instance of TeamsEnhancedEncryptionPolicy called ContosoPartnerTeamsEnhancedEncryptionPolicy and applies the provided values to its settings.
@@ -63,7 +63,22 @@ Accept wildcard characters: False
6363
```
6464
6565
### -CallingEndtoEndEncryptionEnabledType
66-
Determines whether End-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on End-to-end encrypted calls. Set this to Disabled to prohibit.
66+
Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit.
67+
68+
```yaml
69+
Type: Enum
70+
Parameter Sets: (All)
71+
Aliases:
72+
73+
Required: False
74+
Position: Named
75+
Default value: Disabled
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### -MeetingEndToEndEncryption
81+
Determines whether end-to-end encrypted meetings are available in Teams ([requires a Teams Premium license](https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit.
6782
6883
```yaml
6984
Type: Enum

teams/teams-ps/teams/Set-CsTeamsEnhancedEncryptionPolicy.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Use this cmdlet to update values in existing Teams enhanced encryption policy.
1717
## SYNTAX
1818

1919
```
20-
Set-CsTeamsEnhancedEncryptionPolicy [-Description <Object>] [-CallingEndtoEndEncryptionEnabledType <Object>]
20+
Set-CsTeamsEnhancedEncryptionPolicy [-Description <Object>] [-CallingEndtoEndEncryptionEnabledType <Object>] [-MeetingEndToEndEncryption <Object>]
2121
[[-Identity] <Object>] [-Force] [-Instance <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
2525
Use this cmdlet to update values in existing Teams enhanced encryption policy.
2626

27-
The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for End-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently.
27+
The TeamsEnhancedEncryptionPolicy enables administrators to determine which users in your organization can use the enhanced encryption settings in Teams, setting for end-to-end encryption in ad-hoc 1-to-1 VOIP calls is the parameter supported by this policy currently.
2828

2929
## EXAMPLES
3030

@@ -42,6 +42,18 @@ Any Microsoft Teams users who are assigned this policy will have their enhanced
4242

4343
### EXAMPLE 2
4444
```PowerShell
45+
PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -MeetingEndToEndEncryption DisabledUserOverride
46+
```
47+
48+
The command shown in Example 2 modifies an existing per-user Teams enhanced encryption policy with the Identity ContosoPartnerTeamsEnhancedEncryptionPolicy.
49+
50+
51+
This policy has re-assigned MeetingEndToEndEncryption to be DisabledUserOverride.
52+
53+
Any Microsoft Teams users who are assigned this policy and have a Teams Premium license will have the option to create end-to-end encrypted meetings. [Learn more about end-to-end encryption for Teams meetings](https://support.microsoft.com/en-us/office/use-end-to-end-encryption-for-teams-meetings-a8326d15-d187-49c4-ac99-14c17dbd617c).
54+
55+
### EXAMPLE 3
56+
```PowerShell
4557
PS C:\> Set-CsTeamsEnhancedEncryptionPolicy -Identity "ContosoPartnerTeamsEnhancedEncryptionPolicy" -Description "allow useroverride"
4658
```
4759

@@ -71,7 +83,22 @@ Accept wildcard characters: False
7183
```
7284
7385
### -CallingEndtoEndEncryptionEnabledType
74-
Determines whether End-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on End-to-end encrypted calls. Set this to Disabled to prohibit.
86+
Determines whether end-to-end encrypted calling is available for the user in Teams. Set this to DisabledUserOverride to allow user to turn on end-to-end encrypted calls. Set this to Disabled to prohibit.
87+
88+
```yaml
89+
Type: Enum
90+
Parameter Sets: (All)
91+
Aliases:
92+
93+
Required: False
94+
Position: Named
95+
Default value: Disabled
96+
Accept pipeline input: False
97+
Accept wildcard characters: False
98+
```
99+
100+
### -MeetingEndToEndEncryption
101+
Determines whether end-to-end encrypted meetings are available in Teams ([requires a Teams Premium license](https://www.microsoft.com/en-us/microsoft-teams/premium)). Set this to DisabledUserOverride to allow users to schedule end-to-end encrypted meetings. Set this to Disabled to prohibit.
75102
76103
```yaml
77104
Type: Enum

0 commit comments

Comments
 (0)