diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Start-SPOSiteReview.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Start-SPOSiteReview.md index c05b8b116..13edeff3d 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Start-SPOSiteReview.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Start-SPOSiteReview.md @@ -19,7 +19,8 @@ SharePoint Administrators can delegate access governance of sites to correspondi ## SYNTAX ``` -Start-SPOSiteReview -ReportID -SiteID [-Comment ] [] +Start-SPOSiteReview -ReportID -SiteID [-Comment ] + [-DeliveryMode ] [] ``` ## DESCRIPTION @@ -35,6 +36,14 @@ PS C:\> Start-SPOSiteReview -ReportID 03327d1c-38c5-4c32-9dad-85753a682d65 -Site The above cmdlet initiates site access review for the given site as per oversharing criteria mentioned in the given DAG report. +### Example 2 + +```powershell +PS C:\> Start-SPOSiteReview -ReportID 03327d1c-38c5-4c32-9dad-85753a682d65 -SiteID a10f1997-71f2-4ef2-825e-2439400fc601 -DeliveryMode SingleEmail +``` + +The above cmdlet initiates site access review and notifies the reviewers with a single grouped email instead of one email per reviewer. Reviewers are grouped by their notification language, so one email is sent for each language used by the reviewers. + ## PARAMETERS ### -Comment @@ -82,6 +91,29 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DeliveryMode +Specifies how the reviewers are notified for this site access review. + +The acceptable values for this parameter are: + +- Individual: Each reviewer receives a separate email. This is the behavior when the parameter is omitted. +- SingleEmail: The reviewers receive a single grouped email instead of one email each. Reviewers are grouped by their notification language, so one email is sent for each language used by the reviewers. + +If a custom email template is configured for site access reviews in your organization, the grouping setting on that template determines how the reviewers are notified, and it takes precedence over this parameter. + +```yaml +Type: Microsoft.Online.SharePoint.PowerShell.SiteReviewEmailDeliveryMode +Parameter Sets: (All) +Aliases: +Accepted values: Individual, SingleEmail + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).