Commands › Exchange Online

Get-UMActiveCalls

Exchange Online ExchangeOnlineManagement Get-*

Return information about the calls that are active and being processed by the Mailbox server running the Microsoft Exchange Unified Messaging service.

Quick start script

# Get-UMActiveCalls — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-UMActiveCalls -DialPlan <UMDialPlanIdParameter> -InstanceServer <UMServer> -IPGateway <UMIPGatewayIdParameter> | Format-List

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

Syntax — 4 parameter sets

DialPlan

Get-UMActiveCalls -DialPlan <UMDialPlanIdParameter>
 [-DomainController <Fqdn>]
 [<CommonParameters>]

ServerInstance

Get-UMActiveCalls -InstanceServer <UMServer>
 [-DomainController <Fqdn>]
 [<CommonParameters>]

UMIPGateway

Get-UMActiveCalls -IPGateway <UMIPGatewayIdParameter>
 [-DomainController <Fqdn>]
 [<CommonParameters>]

Server

Get-UMActiveCalls [-Server <ServerIdParameter>]
 [-DomainController <Fqdn>]
 [<CommonParameters>]

Parameters (5)

ParameterTypeRequiredWhat it controls
-DialPlan UMDialPlanIdParameter yes The DialPlan parameter specifies the UM dial plan for which you want to retrieve active calls.
-InstanceServer UMServer yes The InstanceServer parameter specifies the Mailbox server running the Microsoft Exchange Unified Messaging service for which you want to retrieve active calls.
-IPGateway UMIPGatewayIdParameter yes The IPGateway parameter specifies the UM IP gateway for which you want to retrieve active calls.
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-Server ServerIdParameter The Server parameter filters the results by the specified Unified Messaging server. You can use any value that uniquely identifies the server. For example:

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