Skip to content

Commit 352c57e

Browse files
authored
Merge branch 'master' into master
2 parents 650aa9d + 313f685 commit 352c57e

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

exchange/exchange-ps/exchange/users-and-groups/Get-Recipient.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,6 @@ The RecipientPreviewFilter parameter tests a recipient filter that you would use
477477

478478
- Value is the property value to search for. Enclose text values and variables in single quotation marks (`'Value'` or `'$Variable'`). If a variable value contains single quotation marks, you need to identify (escape) the single quotation marks to expand the variable correctly. For example, instead of `'$User'`, use `'$($User -Replace "'","''")'`. Don't enclose integers or system values (for example, `500`, `$true`, `$false`, or `$null`).
479479

480-
- In cloud-based environments, you can't use a wildcard as the first character. For example, `'Sales*'` is allowed, but `'*Sales'` isn't allowed.
481-
482-
- In on-premises Exchange, wildcards are valid only as the first or last character. For example, `'Sales*'` or `'*Sales'` are allowed, but `'Sa*les'` isn't allowed.
483-
484480
For detailed information about OPath filters in Exchange, see [Additional OPATH syntax information](https://docs.microsoft.com/powershell/exchange/exchange-server/recipient-filters/recipient-filters#additional-opath-syntax-information).
485481

486482
```yaml

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ Example 2 returns two external users from the third page of the collection.
4949
### -----------------------EXAMPLE 3-----------------------------
5050

5151
```powershell
52-
Get-SPOExternalUser -Position 0 -PageSize 30 -Filter https://contoso.sharepoint.com
52+
Get-SPOExternalUser -Position 0 -PageSize 30 -SiteUrl https://contoso.sharepoint.com
5353
```
5454

55-
Example 3 returns the first 30 users that match the filter <https://contoso.sharepoint.com.>
55+
Example 3 returns the first 30 users that match the SiteUrl <https://contoso.sharepoint.com>.
5656

5757
## PARAMETERS
5858

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,16 @@ Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -EnablePWA $tru
122122

123123
Example 6 enables the site "site1" to create Project Web Applications (PWA).
124124

125+
### -----------------------EXAMPLE 7-----------------------------
126+
127+
```powershell
128+
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -SharingCapability ExternalUserSharingOnly
129+
Set-SPOSite -Identity https://contoso.sharepoint.com/sites/site1 -SharingDomainRestrictionMode AllowList -SharingAllowedDomainList "contoso.com"
130+
```
131+
132+
Example 7 sets the Sharing Capability to allow external users who accept sharing invitations and sign in as authenticated users, and then specifies an email ___domain that is allowed for sharing with the external collaborators.
133+
134+
125135
## PARAMETERS
126136

127137
### -EnablePWA

teams/teams-ps/teams/Add-TeamUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Accept wildcard characters: False
5353
```
5454
5555
### -User
56-
User's UPN (user principal name - e.g. [email protected]).
56+
UPN of a user of the organization (user principal name - e.g. [email protected]).
5757
5858
```yaml
5959
Type: String

0 commit comments

Comments
 (0)