Commands › Microsoft Teams

Remove-CsVideoInteropServiceProvider

Microsoft Teams MicrosoftTeams Remove-*

Use the Remove-CsVideoInteropServiceProvider to remove all provider information about a provider that your organization no longer uses.

Quick start script

# Remove-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)
Remove-CsVideoInteropServiceProvider  -WhatIf
Remove-CsVideoInteropServiceProvider

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

Syntax

Remove-CsVideoInteropServiceProvider [[-Identity] <Object>]
 [-Confirm]
 [-Force]
 [-Tenant <Object>]
 [-WhatIf]
 [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity XdsGlobalRelativeIdentity Specify the VideoInteropServiceProvider to be removed.

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