Commands › Exchange Online

Get-ReportExecutionInstance

Exchange Online ExchangeOnlineManagement Get-*

Review the report execution instance in Exchange Online.

Quick start script

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

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

Syntax

Get-ReportExecutionInstance [-Identity <InstanceIdParameter>]
 [-ScheduleId <MultiValuedProperty>]
 [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Identity InstanceIdParameter The Identity parameter specifies the report execution instance that you want to view. The identity of the instance is a unique GUID value.
-ScheduleId MultiValuedProperty The ScheduleId parameter filters the results by the specified ScheduleId property value, which is a GUID. Multiple report execution instances can have the same ScheduleId value.

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