Commands › SharePoint Online

Get-SPOSiteReview

SharePoint Online Microsoft.Online.SharePoint.PowerShell Get-*

Track all site access reviews initiated from Data Access Governance (DAG) reports.

Quick start script

# Get-SPOSiteReview — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com

# 2. Run and inspect
Get-SPOSiteReview | Format-List

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

Syntax

Get-SPOSiteReview [-SiteReviewID <Guid>] [-Status <SiteReviewStatus>]
 [-ReportEntity <SiteAccessReportEntityEnum>] [-SiteID <Guid>] [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-ReportEntity SiteAccessReportEntityEnum Specifies the entity that could cause oversharing and hence tracked by these reports.
-SiteID Guid Specifies the ID of the site for which access reviews were initiated.
-SiteReviewID Guid Specifies the ID of the particular access review.
-Status SiteReviewStatus Specifies the current status of the site access review.

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