Skip to content

Commit 6bca9bb

Browse files
Merge pull request #1021 from bishalgautam-microsoft/AddIsAuthoritativeFilterDocumentation
Update GET-SPOSite.md to add a serverside filter property IsAuthoritative
2 parents 8319090 + ec8e73e commit 6bca9bb

File tree

1 file changed

+32
-6
lines changed
  • sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell

1 file changed

+32
-6
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOSite.md

Lines changed: 32 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Returns one or more site collections.
2020

2121
### ParamSet1 (Default)
2222
```
23-
Get-SPOSite [[-Identity] <SpoSitePipeBind>] [-Limit <String>] [-Detailed] [<CommonParameters>]
23+
Get-SPOSite [[-Identity] <SpoSitePipeBind>] [-Limit <String>] [-Detailed] [-IsAuthoritative <Boolean>] [<CommonParameters>]
2424
```
2525

2626
### ParamSet3
@@ -111,7 +111,7 @@ This example gets quota details for a Group Site.
111111
Get-SPOSite -Identity https://contoso.sharepoint.com/sites/research | Select InformationSegment
112112
```
113113

114-
This example returns the InformationSegments associated with the site. It is applicable for tenants who have enabled Microsoft 365 Information barriers capability. Read [Learn about information barriers](/microsoft-365/compliance/information-barriers) to understand Information barriers in SharePoint Online.
114+
This example returns the InformationSegment associated with the site. It is applicable for tenants who have enabled Microsoft 365 Information barriers capability. Read [Learn about information barriers](/microsoft-365/compliance/information-barriers) to understand Information barriers in SharePoint Online.
115115

116116
**Note**: This property is available only in SharePoint Online Management Shell Version 16.0.19927.12000 or later.
117117

@@ -125,28 +125,36 @@ This example uses server side filtering to return sites matching 18.
125125

126126
### EXAMPLE 8
127127

128+
```powershell
129+
Get-SPOSite -Filter { IsAuthoritative -eq true }
130+
```
131+
132+
This example uses server side filtering to return Authoritative sites (i.e., sites that have the IsAuthoritative property set to true).
133+
134+
### EXAMPLE 9
135+
128136
```powershell
129137
Get-SPOSite -Limit ALL | ?{$_.IsTeamsConnected -eq $true}
130138
```
131139

132140
This example uses client-side filtering to return a list of sites connected to Microsoft Teams.
133141

134-
### EXAMPLE 9
142+
### EXAMPLE 10
135143

136144
```powershell
137145
Get-SPOSite -Limit ALL | ?{$_.IsTeamsChannelConnected -eq $true}
138146
```
139147

140148
This example uses client-side filtering to return a list of sites connected to a Microsoft Teams Private or Shared channel.
141149

142-
### EXAMPLE 10
150+
### EXAMPLE 11
143151

144152
```powershell
145153
Get-SPOSite -Limit ALL -GroupIdDefined $true
146154
```
147155
This example uses server-side filtering to return all sites that have an associated Microsoft 365 Group.
148156

149-
### EXAMPLE 11
157+
### EXAMPLE 12
150158

151159
```powershell
152160
@@ -236,7 +244,7 @@ Accept wildcard characters: False
236244
> Applicable: SharePoint Online
237245
238246
Specifies the script block of the server-side filter to apply. The type must be a valid filter name and value must be in the form `{ PropertyName <operator> "filterValue"}`. Valid operators are as follows: -eq, -ne, -like, -notlike.
239-
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url.
247+
Currently, you can filter by these properties: Owner, Template (can be used to filter if it is the only property present in the filter), LockState, Url, IsAuthoritative (only supports comparison operators -eq and -ne).
240248
Using the -or operator to include an additional filter is not supported.
241249

242250
Note: The operator values are case-sensitive.
@@ -311,6 +319,24 @@ Accept pipeline input: False
311319
Accept wildcard characters: False
312320
```
313321

322+
### -IsAuthoritative
323+
324+
> Applicable: SharePoint Online
325+
326+
Filter the list of sites where the IsAuthoritative property is set to true. When IsAuthoritative is true, it signals to Microsoft Search, Copilot (BizChat), and other AI agents that the site's content is official, trusted, and verified.
327+
328+
```yaml
329+
Type: Boolean
330+
Parameter Sets: ParamSet1
331+
Aliases:
332+
333+
Required: False
334+
Position: Named
335+
Default value: None
336+
Accept pipeline input: False
337+
Accept wildcard characters: False
338+
```
339+
314340
### -Limit
315341

316342
> Applicable: SharePoint Online

0 commit comments

Comments
 (0)