Commands › Microsoft Teams

Get-CsTeamsEnhancedEncryptionPolicy

Microsoft Teams MicrosoftTeams Get-*

Returns information about the teams enhanced encryption policies configured for use in your organization.

Quick start script

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

# 2. Run and inspect
Get-CsTeamsEnhancedEncryptionPolicy | Format-List

# 3. Export for evidence / drift tracking
Get-CsTeamsEnhancedEncryptionPolicy | Export-Clixml .\CsTeamsEnhancedEncryptionPolicy-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-CsTeamsEnhancedEncryptionPolicy [-LocalStore] [[-Identity] <Object>] [-Filter <Object>]
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-Filter String If you don't know what policies have been pre-constructed, you can use filter to identify all policies available. This is a regex string against the name (Identity) of the pre-constructed policies.
-Identity XdsIdentity Unique identifier assigned to the Teams enhanced encryption policy.
-LocalStore SwitchParameter Internal Microsoft use only.

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