File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
sharepoint/sharepoint-ps/sharepoint-online Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,22 @@ Get-SPOSite -Filter { Url -like "contoso.sharepoint.com/sites/18" }
121
121
122
122
This example uses server side filtering to return sites matching 18.
123
123
124
+ ### -----------------------EXAMPLE 8-----------------------------
125
+
126
+ ``` powershell
127
+ Get-SPOSite -Limit ALL | ?{$_.IsTeamsConnected -eq $true}
128
+ ```
129
+
130
+ This example uses client-side filtering to return a list of sites connected to Microsoft Teams.
131
+
132
+ ### -----------------------EXAMPLE 9-----------------------------
133
+
134
+ ``` powershell
135
+ Get-SPOSite -Limit ALL | ?{$_.IsTeamsChannelConnected -eq $true}
136
+ ```
137
+
138
+ This example uses client-side filtering to return a list of sites connected to a Microsoft Teams Private or Shared channel.
139
+
124
140
## PARAMETERS
125
141
126
142
### -Detailed
You can’t perform that action at this time.
0 commit comments