Commands › Exchange Online

Get-SupervisoryReviewActivity

Exchange Online ExchangeOnlineManagement Get-*

View all activities performed by a reviewer for a specific supervision policy. This information might be useful if reviewer activities are required in regulatory compliance audits or in litigation.

Quick start script

# Get-SupervisoryReviewActivity — 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-SupervisoryReviewActivity -EndDate <ExDateTime> -PolicyId <String> -StartDate <ExDateTime> | Format-List

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

Syntax

Get-SupervisoryReviewActivity -EndDate <ExDateTime> -PolicyId <String> -StartDate <ExDateTime>
 [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-EndDate ExDateTime yes The EndDate parameter specifies the end date of the date range.
-PolicyId String yes {{ Fill PolicyId Description }}
-StartDate ExDateTime yes The StartDate parameter specifies the start date of the date range.

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