Skip to content

Commit 1b33cf2

Browse files
authored
Merge pull request MicrosoftDocs#6410 from robinmalik/patch-2
Update Get-SPOSite.md
2 parents b406f59 + a6618cd commit 1b33cf2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSite.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ Get-SPOSite -Identity https://contoso.sharepoint.com/sites/research | Select Inf
109109

110110
This example returns the InformationSegments associated to the site.
111111

112+
### -----------------------EXAMPLE 7-----------------------------
113+
114+
```powershell
115+
Get-SPOSite -Filter { Url -like "contoso.sharepoint.com/sites/18" }
116+
```
117+
118+
This example uses server side filtering to return sites matching 18.
119+
112120
## PARAMETERS
113121

114122
### -Detailed
@@ -170,7 +178,7 @@ Accept wildcard characters: False
170178
171179
### -Filter
172180
173-
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.
181+
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.
174182
Currently, you can filter by these properties: Owner, Template, LockState, Url.
175183

176184
> [!NOTE]

0 commit comments

Comments
 (0)