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,14 +19,8 @@ This cmdlet enables the administrator to check status of all active and availabl

## SYNTAX

```powershell
Get-SPORestrictedAccessForSitesInsights -RACProtectedSites [-ReportId <Guid>] [-FullDetails] [-Action <ActionType>] [-InsightsSummary <Boolean>]
```

## SYNTAX

```powershell
Get-SPORestrictedAccessForSitesInsights -ActionsBlockedByPolicy [-ReportId <Guid>] [-Content <ContentType>] [-Action <ActionType>]
Get-SPORestrictedAccessForSitesInsights [-RACProtectedSites] [-ActionsBlockedByPolicy] [-ReportId <Guid>] [-Action <ActionType>] [-InsightsSummary] [-FullDetails] [-Content <SPOActionsBlockedByRACPolicyInsightType>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -80,16 +74,16 @@ Example 3 enables administrator to view the report containing top sites with acc

## PARAMETERS

### -RACProtectedSites
### -Action

It is an optional parameter, and it specifies the type of report to be viewed or downloaded.
It is an optional parameter, and it specifies whether to view or download a specific report.

```yaml
Type: SwitchParameter
Type: ActionType
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Aliases:
Accepted values: View, Download

Required: False
Position: Named
Default value: None
Expand All @@ -104,97 +98,92 @@ It is an optional parameter, and it specifies the type of report to be viewed or
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online

Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ReportId
### -Content

It is an optional parameter, and it specifies the unique Id of the report to be viewed or downloaded.
It is an optional parameter, and it specifies the subtype of the report to be viewed or downloaded.

```yaml
Type: Guid
Type: SPOActionsBlockedByRACPolicyInsightType
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Accepted values: AllDenials, TopSites, TopUsers, SiteDistribution

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InsightsSummary
### -FullDetails

It is an optional parameter, and it specifies the subtype of the report to be viewed or downloaded.
It is an optional parameter and allows to download a CSV file containing up to 1 million records.

```yaml
Type: Bool
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online


Required: False
Position: Named
Default value: True
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Content
### -InsightsSummary

It is an optional parameter, and it specifies the subtype of the report to be viewed or downloaded.

```yaml
Type: ContentType
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online


Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Action
### -RACProtectedSites

It is an optional parameter, and it specifies whether to view or download a specific report.
It is an optional parameter, and it specifies the type of report to be viewed or downloaded.

```yaml
Type: ActionType
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online


Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -FullDetails
### -ReportId

It is an optional parameter and allows to download a CSV file containing up to 1 million records.
It is an optional parameter, and it specifies the unique Id of the report to be viewed or downloaded.

```yaml
Type: SwitchParameter
Type: Guid
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online


Required: False
Position: Named
Default value: False
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down