Commands › Microsoft Teams

Get-CsTeamsVideoInteropServicePolicy

Microsoft Teams MicrosoftTeams Get-*

The Get-CsTeamsVideoInteropServicePolicy cmdlet allows you to identify the pre-constructed policies that you can use in your organization.

Quick start script

# Get-CsTeamsVideoInteropServicePolicy — 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-CsTeamsVideoInteropServicePolicy | Format-List

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

Syntax — 2 parameter sets

Identity (Default)

Get-CsTeamsVideoInteropServicePolicy [-Tenant <System.Guid>] [[-Identity] <XdsIdentity>] [-LocalStore]
 [<CommonParameters>]

Filter

Get-CsTeamsVideoInteropServicePolicy [-Tenant <System.Guid>] [-Filter <String>] [-LocalStore]
 [<CommonParameters>]

Parameters (4)

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 Specify the known name of a policy that has been pre-constructed for you to use.
-LocalStore SwitchParameter Internal Microsoft use only.
-Tenant Guid Internal Microsoft use only.

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