Commands › Exchange Online
Get-UMActiveCalls
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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.