Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ SharePoint Administrators can delegate access governance of sites to correspondi
## SYNTAX

```
Start-SPOSiteReview -ReportID <Guid> -SiteID <Guid> [-Comment <String>] [<CommonParameters>]
Start-SPOSiteReview -ReportID <Guid> -SiteID <Guid> [-Comment <String>]
[-DeliveryMode <SiteReviewEmailDeliveryMode>] [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -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
Expand Down Expand Up @@ -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).

Expand Down