Commands › Microsoft Teams

Get-CsMeetingMigrationStatus

Microsoft Teams MicrosoftTeams Get-*

You use the `Get-CsMeetingMigrationStatus` cmdlet to check the status of meeting migrations.

Quick start script

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

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

Syntax

Get-CsMeetingMigrationStatus [[-Identity] <UserIdParameter>] [-EndTime <DateTime>] [-StartTime <DateTime>] [-SummaryOnly] [-State <StateType>] [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-EndTime Object Specifies the end date of the date range.
-Identity UserIdParameter Specifies the Identity of the user account to be to be modified. A user identity can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain...
-StartTime Object Specifies the start date of the date range.
-State StateType With this parameter you can filter by migration state. Possible values are:
-SummaryOnly SwitchParameter Specified that you want a summary status of MMS migrations returned.

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