Skip to content

Commit 0e4ec61

Browse files
authored
Merge branch 'master' into patch-2
2 parents 447e9fc + d239d98 commit 0e4ec61

19 files changed

+884
-58
lines changed

exchange/docs-conceptual/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
href: filter-properties.md
2424
- name: Filterable properties for the RecipientFilter parameter
2525
href: recipientfilter-properties.md
26+
- name: Values for the CustomPropertyNames parameter
27+
href: values-for-custompropertynames-parameter.md
2628
- name: Exchange Online PowerShell
2729
href: exchange-online-powershell.md
2830
items:

exchange/docs-conceptual/values-for-custompropertynames-parameter.md

Lines changed: 217 additions & 0 deletions
Large diffs are not rendered by default.

exchange/exchange-ps/exchange/Get-CalendarDiagnosticObjects.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ Accept wildcard characters: False
135135
```
136136
137137
### -CustomPropertyNames
138-
The CustomPropertyNames parameter returns the specified calendar item custom property in the results. You can specify multiple values separated by commas.
138+
The CustomPropertyNames parameter returns the specified calendar item custom property in the results. For valid values, see [Values for the CustomPropertyNames parameter in Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/values-for-custompropertynames-parameter).
139+
140+
You can specify multiple values separated by commas.
139141
140142
```yaml
141143
Type: String[]

exchange/exchange-ps/exchange/Get-M365DataAtRestEncryptionPolicy.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Get-M365DataAtRestEncryptionPolicy cmdlet to view existing Microsoft 365 data at rest encryption policies.
17+
Use the Get-M365DataAtRestEncryptionPolicy cmdlet to view existing Microsoft 365 data-at-rest encryption policies.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

@@ -31,6 +31,10 @@ Get-M365DataAtRestEncryptionPolicy [[-Identity] <DataEncryptionPolicyIdParameter
3131
```
3232

3333
## DESCRIPTION
34+
M365 data-at-rest encryption policy cmdlets are accessible to compliance administrator role as part of the Exchange Online infrastructure. For more information, see [Overview of M365 Customer Key at the tenant level](https://docs.microsoft.com/microsoft-365/compliance/customer-key-tenant-level#get-policy-details).
35+
36+
You can create and assign a data-at-rest encryption policy at the tenant level by using the appropriate M365DataAtRestEncryptionPolicy cmdlets in Exchange Online PowerShell.
37+
3438
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3539

3640
## EXAMPLES
@@ -40,7 +44,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
4044
Get-M365DataAtRestEncryptionPolicy
4145
```
4246

43-
This example returns a summary list of all data at rest encryption policies.
47+
This example returns a summary list of all data-at-rest encryption policies.
4448

4549
### Example 2
4650
```powershell
@@ -52,7 +56,7 @@ This example returns detailed information about the policy named Contoso Corpora
5256
## PARAMETERS
5357

5458
### -Identity
55-
The Identity parameter specifies the data at rest encryption policy that you want to view. You can use any value that uniquely identifies the policy. For example:
59+
The Identity parameter specifies the data-at-rest encryption policy that you want to view. You can use any value that uniquely identifies the policy. For example:
5660

5761
- Name
5862
- Distinguished name (DN)

exchange/exchange-ps/exchange/Get-M365DataAtRestEncryptionPolicyAssignment.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Get-M365DataAtRestEncryptionPolicyAssignment cmdlet to view existing Microsoft 365 data at rest encryption policy assignments.
17+
Use the Get-M365DataAtRestEncryptionPolicyAssignment cmdlet to view the currently assigned Microsoft 365 data-at-rest encryption policy.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

@@ -27,6 +27,8 @@ Get-M365DataAtRestEncryptionPolicyAssignment [<CommonParameters>]
2727
```
2828

2929
## DESCRIPTION
30+
This cmdlet lists the policy that's currently assigned to the tenant.
31+
3032
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3133

3234
## EXAMPLES
@@ -36,14 +38,14 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3638
Get-M365DataAtRestEncryptionPolicyAssignment
3739
```
3840

39-
This example returns a summary list of all data at rest encryption policy assignments.
41+
This example returns a summary list of all data-at-rest encryption policy assignments.
4042

4143
### Example 2
4244
```powershell
4345
Get-M365DataAtRestEncryptionPolicyAssignment | Format-List
4446
```
4547

46-
This example returns detailed information for all data at rest encryption policy assignments.
48+
This example returns detailed information for all data-at-rest encryption policy assignments.
4749

4850
### CommonParameters
4951
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216).

exchange/exchange-ps/exchange/New-M365DataAtRestEncryptionPolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the New-M365DataAtRestEncryptionPolicy cmdlet to create a new Microsoft 365 data at rest encryption policy.
17+
Use the New-M365DataAtRestEncryptionPolicy cmdlet to create a new Microsoft 365 data-at-rest encryption policy.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

@@ -42,12 +42,12 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
4242
New-M365DataAtRestEncryptionPolicy -Name "US Mailboxes" -AzureKeyIDs "https://contoso.vault.azure.net/keys/key1/",https://contoso.vault.azure.net/keys/key2/" -Description "Root key for mailboxes located in US territories"
4343
```
4444

45-
This example creates a data at rest encryption policy named US Mailboxes with the specified Azure Key Vault keys and description.
45+
This example creates a data-at-rest encryption policy named US Mailboxes with the specified Azure Key Vault keys and description.
4646

4747
## PARAMETERS
4848

4949
### -Name
50-
The Name parameter specifies a unique name for the data at rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
50+
The Name parameter specifies a unique name for the data-at-rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
5151

5252
```yaml
5353
Type: String

exchange/exchange-ps/exchange/Remove-MailboxFolderPermission.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This example removes John's permissions to the Training folder in Kim's mailbox.
4848
Remove-MailboxFolderPermission -Identity [email protected]:\Calendar -ResetDelegateUserCollection
4949
```
5050

51-
This example will clear any corrupted delegate information from Kims mailbox.
51+
This example will clear any corrupted delegate information from Kim's mailbox.
5252

5353
## PARAMETERS
5454

exchange/exchange-ps/exchange/Set-EmailAddressPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ In on-premises Exchange, this example clears the disabled email address template
8888

8989
### Example 3
9090
```powershell
91-
Set-EmailAddressPolicy -Identity 'Office 365 Groups' -EnabledEmailAddressTemplates "SMTP:@contoso.com","@contoso.onmicrosoft.com","smtp:@contoso.microsoftonline.com"
91+
Set-EmailAddressPolicy -Identity "Office 365 Groups" -EnabledEmailAddressTemplates "SMTP:@contoso.com","smtp:@contoso.onmicrosoft.com","smtp:@contoso.microsoftonline.com"
9292
```
9393

94-
In Exchange Online, this example modifies the existing email adress policy named Office 365 Groups by setting the enabled email address templates to "SMTP:@contoso.com", and "@contoso.onmicrosoft.com", and "smtp:@contoso.microsoftonline.com". This will also set the enabled primary SMTP address template to "@contoso.com".
94+
In Exchange Online, this example modifies the existing email adress policy named "Office 365 Groups" and sets the enabled email address templates to use "@contoso.com" as the primary SMTP address and "@contoso.onmicrosoft.com" and "@contoso.microsoftonline.com" as proxy addresses.
9595

9696
## PARAMETERS
9797

exchange/exchange-ps/exchange/Set-M365DataAtRestEncryptionPolicy.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Set-M365DataAtRestEncryptionPolicy cmdlet to enable or disable a Microsoft 365 data at rest encryption policy.
17+
Use the Set-M365DataAtRestEncryptionPolicy cmdlet to modify Microsoft 365 data-at-rest encryption policies in Exchange Online.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

@@ -69,19 +69,19 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
6969
Set-M365DataAtRestEncryptionPolicy -Identity "US Mailboxes" -Enabled $false
7070
```
7171

72-
This example disabled the data at rest encryption policy named US Mailboxes.
72+
This example disabled the data-at-rest encryption policy named US Mailboxes.
7373

7474
### Example 2
7575
```powershell
7676
Set-M365DataAtRestEncryptionPolicy -Identity "Europe Mailboxes" -Refresh
7777
```
7878

79-
This example updates the data at rest encryption policy named Europe Mailboxes after one of the associated keys has been rotated in the Azure Key Vault.
79+
This example updates the data-at-rest encryption policy named Europe Mailboxes after one of the associated keys has been rotated in the Azure Key Vault.
8080

8181
## PARAMETERS
8282

8383
### -Identity
84-
The Identity parameter specifies the data at rest encryption policy that you want to modify. You can use any value that uniquely identifies the policy. For example:
84+
The Identity parameter specifies the data-at-rest encryption policy that you want to modify. You can use any value that uniquely identifies the policy. For example:
8585

8686
- Name
8787
- Distinguished name (DN)
@@ -187,7 +187,7 @@ Accept wildcard characters: False
187187
```
188188

189189
### -Name
190-
The Name parameter specifies a unique name for the data at rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
190+
The Name parameter specifies a unique name for the data-at-rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
191191

192192
```yaml
193193
Type: String
@@ -203,7 +203,7 @@ Accept wildcard characters: False
203203
```
204204

205205
### -Refresh
206-
Use the Refresh switch to update the data at rest encryption policy in Exchange Online after you rotate any of the associated keys in the Azure Key Vault. You don't need to specify a value with this switch.
206+
Use the Refresh switch to update the data-at-rest encryption policy in Exchange Online after you rotate any of the associated keys in the Azure Key Vault. You don't need to specify a value with this switch.
207207

208208
```yaml
209209
Type: SwitchParameter

exchange/exchange-ps/exchange/Set-M365DataAtRestEncryptionPolicyAssignment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.reviewer:
1414
## SYNOPSIS
1515
This cmdlet is available only in the cloud-based service.
1616

17-
Use the Set-M365DataAtRestEncryptionPolicyAssignment cmdlet to assign a Microsoft 365 data at rest encryption policy.
17+
Use the Set-M365DataAtRestEncryptionPolicyAssignment cmdlet to assign a Microsoft 365 data-at-rest encryption policy at the tenant level.
1818

1919
**Note**: We recommend that you use the Exchange Online PowerShell V2 module to connect to Exchange Online PowerShell. For instructions, see [Connect to Exchange Online PowerShell](https://docs.microsoft.com/powershell/exchange/connect-to-exchange-online-powershell).
2020

@@ -36,12 +36,12 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3636
Set-M365DataAtRestEncryptionPolicyAssignment -DataEncryptionPolicy "Contoso Corporate"
3737
```
3838

39-
This example assigns the data at rest encryption policy named Contoso Corporate.
39+
This example assigns the data-at-rest encryption policy named Contoso Corporate.
4040

4141
## PARAMETERS
4242

4343
### -DataEncryptionPolicy
44-
The DataEncryptionPolicy parameter specifies the data at rest encryption policy. You can use any value that uniquely identifies the policy. For example:
44+
The DataEncryptionPolicy parameter specifies the data-at-rest encryption policy. You can use any value that uniquely identifies the policy. For example:
4545

4646
- Name
4747
- Distinguished name (DN)

0 commit comments

Comments
 (0)