Skip to content

Commit 740a195

Browse files
authored
Merge branch 'master' into master
2 parents bf26d31 + 42ecf03 commit 740a195

File tree

13 files changed

+67
-28
lines changed

13 files changed

+67
-28
lines changed

exchange/exchange-ps/exchange/New-DlpComplianceRule.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,9 @@ Accept wildcard characters: False
421421
```
422422

423423
### -ContentContainsSensitiveInformation
424-
The ContentContainsSensitiveInformation parameter specifies a condition for the rule that's based on a sensitive information type match in content. The rule is applied to content that contains the specified sensitive information type.
424+
The ContentContainsSensitiveInformation parameter specifies a condition for the rule that's based on a sensitive information type match in content. The rule is applied to content that contains the specified sensitive information type. In addition to sensitive information type, the parameter can also be applied to files that contain sensitivity labels.
425425

426-
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`.
426+
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`. Example for sensitivity label: `labels = @(@{name ="Confidential"; type ="Sensitivity";})`
427427

428428
Use the Get-DLPSensitiveInformationType cmdlet to list the sensitive information types for your organization. For more information on sensitive information types, see [What the sensitive information types in Exchange look for](https://docs.microsoft.com/exchange/what-the-sensitive-information-types-in-exchange-look-for-exchange-online-help).
429429

@@ -776,9 +776,9 @@ Accept wildcard characters: False
776776
```
777777

778778
### -ExceptIfContentContainsSensitiveInformation
779-
The ExceptIfContentContainsSensitiveInformation parameter specifies an exception for the rule that's based on a sensitive information type match in content. The rule isn't applied to content that contains the specified sensitive information type.
779+
The ExceptIfContentContainsSensitiveInformation parameter specifies an exception for the rule that's based on a sensitive information type match in content. The rule isn't applied to content that contains the specified sensitive information type. In addition to sensitive information type, the parameter can also be applied to files that contain sensitivity labels.
780780

781-
This parameter uses the following syntax: `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`.
781+
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`. Example for sensitivity label: `labels = @(@{name ="Confidential"; type ="Sensitivity";})`
782782

783783
Use the Get-DLPSensitiveInformationType cmdlet to list the sensitive information types for your organization. For more information on sensitive information types, see [What the sensitive information types in Exchange look for](https://docs.microsoft.com/exchange/what-the-sensitive-information-types-in-exchange-look-for-exchange-online-help).
784784

exchange/exchange-ps/exchange/New-MigrationBatch.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,9 +1375,15 @@ Accept wildcard characters: False
13751375
```
13761376

13771377
### -TargetArchiveDatabases
1378-
The TargetArchiveDatabases parameter specifies the database where the archive mailboxes specified in the migration batch will be migrated to.
1378+
The TargetArchiveDatabases parameter specifies the database where the archive mailboxes specified in the migration batch will be migrated to. You can use any value that uniquely identifies the database. For example:
13791379

1380-
You can also specify multiple databases for the value of this parameter. The migration service selects one database as the target database to move the archive mailbox to. For example: -TargetArchiveDatabases @(MBXDB01,MBXDB02,MBXDB03)
1380+
- Name
1381+
- Distinguished name (DN)
1382+
- GUID
1383+
1384+
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
1385+
1386+
When you enter multiple values, the migration service selects one database as the target database to move the archive mailbox to.
13811387

13821388
You can only use this parameter for local moves and remote move migrations.
13831389

@@ -1395,17 +1401,20 @@ Accept wildcard characters: False
13951401
```
13961402

13971403
### -TargetDatabases
1398-
The TargetDatabases parameter specifies the identity of the database that you're moving mailboxes to. You can use the following values:
1404+
The TargetDatabases parameter specifies the identity of the database that you're moving mailboxes to. You can use any value that uniquely identifies the database. For example:
13991405

1400-
- Database GUID
1401-
- Database name
1406+
- Name
1407+
- Distinguished name (DN)
1408+
- GUID
14021409

1403-
If you don't specify the TargetDatabases parameter for a local move, the cmdlet uses the automatic mailbox distribution logic to select the database.
1410+
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
14041411

1405-
You can also specify multiple databases for the value of this parameter. The migration service will select one as the target database to move the mailbox to. For example: -TargetDatabases @(MBXDB01,MBXDB02,MBXDB03)
1412+
When you enter multiple values, the migration service selects one database as the target database to move the mailbox to.
14061413

14071414
You can only use this parameter for local moves and remote move migrations.
14081415

1416+
If you don't use this parameter for a local move, the cmdlet uses the automatic mailbox distribution logic to select the database.
1417+
14091418
```yaml
14101419
Type: MultiValuedProperty
14111420
Parameter Sets: Local, Onboarding, Offboarding

exchange/exchange-ps/exchange/Set-DlpComplianceRule.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -394,9 +394,9 @@ Accept wildcard characters: False
394394
```
395395

396396
### -ContentContainsSensitiveInformation
397-
The ContentContainsSensitiveInformation parameter specifies a condition for the rule that's based on a sensitive information type match in content. The rule is applied to content that contains the specified sensitive information type.
397+
The ContentContainsSensitiveInformation parameter specifies a condition for the rule that's based on a sensitive information type match in content. The rule is applied to content that contains the specified sensitive information type. In addition to sensitive information type, the parameter can also be applied to files that contain sensitivity labels.
398398

399-
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`.
399+
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`. Example for sensitivity label: `labels = @(@{name ="Confidential"; type ="Sensitivity";})`
400400

401401
Use the Get-DLPSensitiveInformationType cmdlet to list the sensitive information types for your organization. For more information on sensitive information types, see [What the sensitive information types in Exchange look for](https://docs.microsoft.com/exchange/what-the-sensitive-information-types-in-exchange-look-for-exchange-online-help).
402402

@@ -709,9 +709,9 @@ Accept wildcard characters: False
709709
```
710710

711711
### -ExceptIfContentContainsSensitiveInformation
712-
The ExceptIfContentContainsSensitiveInformation parameter specifies an exception for the rule that's based on a sensitive information type match in content. The rule isn't applied to content that contains the specified sensitive information type.
712+
The ExceptIfContentContainsSensitiveInformation parameter specifies an exception for the rule that's based on a sensitive information type match in content. The rule isn't applied to content that contains the specified sensitive information type. In addition to sensitive information type, the parameter can also be applied to files that contain sensitivity labels.
713713

714-
This parameter uses the following syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`.
714+
This parameter uses the basic syntax `@(@{Name="SensitiveInformationType1";[minCount="Value"],@{Name="SensitiveInformationType2";[minCount="Value"],...)`. For example, `@(@{Name="U.S. Social Security Number (SSN)"; minCount="2"},@{Name="Credit Card Number"})`. Example for sensitivity label: `labels = @(@{name ="Confidential"; type ="Sensitivity";})`
715715

716716
Use the Get-DLPSensitiveInformationType cmdlet to list the sensitive information types for your organization. For more information on sensitive information types, see [What the sensitive information types in Exchange look for](https://docs.microsoft.com/exchange/what-the-sensitive-information-types-in-exchange-look-for-exchange-online-help).
717717

exchange/exchange-ps/exchange/Set-ExternalInOutlook.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ Accept wildcard characters: False
7676
```
7777
7878
### -AllowList
79-
The AllowList parameter specifies exceptions to external sender identification in supported versions of Outlook. Messages received from the specified senders or senders in the specified domains don't receive native External sender identification. Valid values are domains (contoso.com) or email addresses ([email protected]).
79+
The AllowList parameter specifies exceptions to external sender identification in supported versions of Outlook. Messages received from the specified senders or senders in the specified domains don't receive native External sender identification. The allow list uses the `5322.From` address (also known as the **From** address or P2 sender).
80+
81+
Valid values are an individual domain (contoso.com), a domain and all subdomains (*.contoso.com) or email addresses ([email protected]).
8082

8183
To enter multiple values and overwrite any existing entries, use the following syntax: `Value1,Value2,...ValueN`. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
8284

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ Set-OrganizationConfig -ShortenEventScopeDefault <ShortenEventScopeMode>
8383
[-ExternalInOutlookEnabled <Boolean>]
8484
[-FindTimeAttendeeAuthenticationEnabled <Boolean>]
8585
[-FindTimeAutoScheduleDisabled <Boolean>]
86+
[-FindTimeLockPollForAttendeesEnabled <Boolean>]
8687
[-FindTimeOnlineMeetingOptionDisabled <Boolean>]
8788
[-FocusedInboxOn <Boolean>]
8889
[-HierarchicalAddressBookRoot <UserContactGroupIdParameter>]
@@ -1892,6 +1893,29 @@ Accept pipeline input: False
18921893
Accept wildcard characters: False
18931894
```
18941895

1896+
### -FindTimeLockPollForAttendeesEnabled
1897+
This parameter is available only in the cloud-based service.
1898+
1899+
The FindTimeLockPollForAttendeesEnabled controls whether the **Lock poll for attendees** setting is managed by the organization. Valid values are:
1900+
1901+
- $true: **Lock poll for attendees** is on. Attendees will not be able to suggest new times or edit other attendees. The meeting organizer can't turn off this setting (always on).
1902+
- $false: By default, **Lock poll for attendees** is off (initial default) or on (the user saved settings from last poll), but the meeting organizer is allowed to turn the setting off or on to allow or prevent attendees from suggesting new times or editing attendees.
1903+
1904+
For more information about FindTime, see [How to create a FindTime poll](https://support.microsoft.com/office/4dc806ed-fde3-4ea7-8c5e-b5d1fddab4a6).
1905+
1906+
```yaml
1907+
Type: Boolean
1908+
Parameter Sets: ShortenEventScopeParameter
1909+
Aliases:
1910+
Applicable: Exchange Online
1911+
1912+
Required: False
1913+
Position: Named
1914+
Default value: None
1915+
Accept pipeline input: False
1916+
Accept wildcard characters: False
1917+
```
1918+
18951919
### -FindTimeOnlineMeetingOptionDisabled
18961920
This parameter is available only in the cloud-based service.
18971921

@@ -2949,7 +2973,10 @@ Accept wildcard characters: False
29492973
```
29502974

29512975
### -SendFromAliasEnabled
2952-
This parameter is available only in the cloud-based service.
2976+
This parameter is available only in the cloud-based service.
2977+
2978+
Note: This feature is in Preview and has not yet been officially released. Do not enable it if you are not willing to lose certain functionality or have a degraded experience.
2979+
An official announcement will be released via the EHLO blog and Message Center in due time.
29532980

29542981
The SendFromAliasEnabled parameter allows mailbox users to send messages using aliases (proxy addresses). It does this by disabling the rewriting of aliases to their primary SMTP address. This change is implemented in the Exchange Online service. At the same time, Outlook clients are making changes to natively support aliases for sending and receiving messages. Even without an updated client, changes in behavior may be seen for users using any email client as the setting affects all messages sent and received by a mailbox. Valid values are:
29552982

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Accept wildcard characters: False
191191
192192
### -OdbMoveId
193193
194-
Onedrive GUID MoveID that you get when you start a job.
194+
OneDrive GUID MoveID that you get when you start a job.
195195
196196
```yaml
197197
Type: Guid

sharepoint/sharepoint-ps/sharepoint-pnp/Add-PnPOrgAssetsLibrary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add-PnPOrgAssetsLibrary -LibraryUrl <String> [-ThumbnailUrl <String>] [-CdnType
2929
```
3030

3131
## DESCRIPTION
32-
Adds a given document library as an organizational asset source in your Sharepoint Online Tenant. All organizational asset sources you add must reside in the same site collection. Document libraries specified as organizational asset must be enabled as an Office 365 CDN source, either as private or public. It may take some time before this change will be reflected in the webinterface.
32+
Adds a given document library as an organizational asset source in your SharePoint Online Tenant. All organizational asset sources you add must reside in the same site collection. Document libraries specified as organizational asset must be enabled as an Office 365 CDN source, either as private or public. It may take some time before this change will be reflected in the webinterface.
3333

3434
## EXAMPLES
3535

sharepoint/sharepoint-ps/sharepoint-pnp/Remove-PnPOrgAssetsLibrary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Remove-PnPOrgAssetsLibrary -LibraryUrl <String> [-ShouldRemoveFromCdn <Boolean>]
2929
```
3030

3131
## DESCRIPTION
32-
Removes a given document library as a organizational asset source based on its server relative URL in your Sharepoint Online Tenant. It will not remove the document library itself. It may take some time before this change will be reflected in the webinterface.
32+
Removes a given document library as a organizational asset source based on its server relative URL in your SharePoint Online Tenant. It will not remove the document library itself. It may take some time before this change will be reflected in the webinterface.
3333

3434
## EXAMPLES
3535

sharepoint/sharepoint-ps/sharepoint-pnp/Remove-PnPOrgNewsSite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Remove-PnPOrgNewsSite -OrgNewsSiteUrl <SitePipeBind> [-Connection <PnPConnection
2828
```
2929

3030
## DESCRIPTION
31-
Removes a given site from the list of organizational news sites based on its URL in your Sharepoint Online Tenant.
31+
Removes a given site from the list of organizational news sites based on its URL in your SharePoint Online Tenant.
3232

3333
## EXAMPLES
3434

sharepoint/sharepoint-ps/sharepoint-server/New-SPEnterpriseSearchCrawlContentSource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ Accept wildcard characters: False
249249

250250
### -SharePointCrawlBehavior
251251

252-
Specifies crawl behavior for a sharepoint type content source.
252+
Specifies crawl behavior for a SharePoint type content source.
253253
The behavior can be either:
254254

255255
CrawlSites to crawl only particular site collections.

0 commit comments

Comments
 (0)