Commands › Microsoft Teams

New-CsVideoInteropServiceProvider

Microsoft Teams MicrosoftTeams New-*

Use the New-CsVideoInteropServiceProvider to specify information about a supported CVI partner your organization would like to use.

Quick start script

# New-CsVideoInteropServiceProvider — 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-CsVideoInteropServiceProvider
$before | Format-List

# 3. Make the change (dry run first)
New-CsVideoInteropServiceProvider -Identity <XdsGlobalRelativeIdentity> -Name <String> -TenantKey <String> -WhatIf
New-CsVideoInteropServiceProvider -Identity <XdsGlobalRelativeIdentity> -Name <String> -TenantKey <String>

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

Syntax — 2 parameter sets

Identity (Default)

New-CsVideoInteropServiceProvider [-Tenant <System.Guid>] [-AadApplicationIds <String>] -TenantKey <String>
 [-InstructionUri <String>] [-AllowAppGuestJoinsAsAuthenticated <Boolean>]
 [-Identity] <XdsGlobalRelativeIdentity> [-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

ParentAndRelativeKey

New-CsVideoInteropServiceProvider [-Tenant <System.Guid>] -Name <String> [-AadApplicationIds <String>]
 -TenantKey <String> [-InstructionUri <String>] [-AllowAppGuestJoinsAsAuthenticated <Boolean>] [-InMemory]
 [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (11)

ParameterTypeRequiredWhat it controls
-AadApplicationIds String This is an optional parameter. A semicolon separated list of Microsoft Entra AppIds of the CVI partner bots can be specified in this parameter. This parameter works in conjunction with...
-AllowAppGuestJoinsAsAuthenticated Boolean This is an optional parameter. Default = false. This parameter works in conjunction with AadApplicationIds. When AllowAppGuestJoinsAsAuthenticated is set to true, a VTC device joining anonymously using any of the...
-Confirm SwitchParameter Prompts you for confirmation before running the cmdlet.
-Force SwitchParameter Bypass all non-fatal errors.
-Identity XdsGlobalRelativeIdentity yes This is mandatory parameter and can have only one of the 6 values PolycomServiceProviderEnabled PexipServiceProviderEnabled BlueJeansServiceProviderEnabled
-InMemory SwitchParameter Create a provider object in memory without committing it to the service.
-InstructionUri String InstructionUri provides additional VTC dialin options. This field shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI...
-Name String yes This is mandatory parameter and can have only one of the 4 values
-Tenant Guid Internal Microsoft use only.
-TenantKey String yes Tenantkey shows up in the Teams meeting when a CVI enabled user schedules a meeting. This TenantKey is used to dial into the partner's IVR for the partner CVI service. The partner will provide you this information...
-WhatIf SwitchParameter Shows what would happen if the cmdlet runs. The cmdlet is not run.

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