You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
115
115
116
116
**Note**: This property is available only in SharePoint Online Management Shell Version 16.0.19927.12000 or later.
117
117
@@ -125,28 +125,36 @@ This example uses server side filtering to return sites matching 18.
125
125
126
126
### EXAMPLE 8
127
127
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
+
128
136
```powershell
129
137
Get-SPOSite -Limit ALL | ?{$_.IsTeamsConnected -eq $true}
130
138
```
131
139
132
140
This example uses client-side filtering to return a list of sites connected to Microsoft Teams.
133
141
134
-
### EXAMPLE 9
142
+
### EXAMPLE 10
135
143
136
144
```powershell
137
145
Get-SPOSite -Limit ALL | ?{$_.IsTeamsChannelConnected -eq $true}
138
146
```
139
147
140
148
This example uses client-side filtering to return a list of sites connected to a Microsoft Teams Private or Shared channel.
141
149
142
-
### EXAMPLE 10
150
+
### EXAMPLE 11
143
151
144
152
```powershell
145
153
Get-SPOSite -Limit ALL -GroupIdDefined $true
146
154
```
147
155
This example uses server-side filtering to return all sites that have an associated Microsoft 365 Group.
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).
240
248
Using the -or operator to include an additional filter is not supported.
241
249
242
250
Note: The operator values are case-sensitive.
@@ -311,6 +319,24 @@ Accept pipeline input: False
311
319
Accept wildcard characters: False
312
320
```
313
321
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.
0 commit comments