Skip to content

Commit d6d8765

Browse files
authored
Merge branch 'master' into master
2 parents 7ac624a + acd8e3e commit d6d8765

File tree

6 files changed

+36
-9
lines changed

6 files changed

+36
-9
lines changed

exchange/exchange-ps/exchange/New-CaseHoldPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ The ExchangeLocation parameter specifies the mailboxes to include in the policy.
151151
To specify a mailbox or distribution group, you can use the following values:
152152

153153
- Name
154-
- SMTP address
154+
- SMTP address. To specify an inactive mailbox, precede the address with a period (.).
155155
- Azure AD ObjectId (You can use the [Get-AzureADUser](https://docs.microsoft.com/powershell/module/azuread/get-azureaduser) cmdlet to obtain this value.)
156156

157157
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"`.

exchange/exchange-ps/exchange/New-MobileDeviceMailboxPolicy.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ Mobile device mailbox policies define settings for mobile devices that are used
8787

8888
Some mobile device mailbox policy settings require the mobile device to have certain built-in features that enforce these security and device management settings. If your organization allows all devices, you need to set the AllowNonProvisionableDevices parameter to $true. This allows devices that can't enforce all policy settings to synchronize with your server.
8989

90+
Some settings in this cmdlet are supported by Outlook for iOS and Android. For more information, see [Leveraging Exchange Online mobile device policies](https://docs.microsoft.com/exchange/clients-and-mobile-in-exchange-online/outlook-for-ios-and-android/secure-outlook-for-ios-and-android#leveraging-exchange-online-mobile-device-policies).
91+
9092
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).
9193

9294
## EXAMPLES
@@ -155,7 +157,15 @@ Accept wildcard characters: False
155157
```
156158
157159
### -AllowBluetooth
158-
The AllowBluetooth parameter specifies whether the Bluetooth capabilities of the mobile device are allowed. The available options are Disable, HandsfreeOnly, and Allow. The default value is Allow.
160+
The AllowBluetooth parameter specifies whether the Bluetooth capabilities are allowed on the mobile device. Valid values are:
161+
162+
- Allow (this is the default value).
163+
- Disable
164+
- HandsfreeOnly
165+
166+
The values Allow or HandsfreeOnly allow synchronization between Outlook for Android and the Outlook for Android wearable app for the associated Microsoft account.
167+
168+
The value Disable disables synchronization between Outlook for Android and the Outlook for Android wearable app for the associated Microsoft account. Any previously synchronized data is deleted. This value does not disable Bluetooth on the Android device or the wearable device, nor does it affect other Android wearable apps.
159169
160170
```yaml
161171
Type: BluetoothType
@@ -604,6 +614,8 @@ Accept wildcard characters: False
604614
```
605615

606616
### -DeviceEncryptionEnabled
617+
**Note**: This setting is supported by Outlook for iOS and Android.
618+
607619
The DeviceEncryptionEnabled parameter specifies whether encryption is enabled on the mobile device. Valid input for this parameter is $true or $false. The default value is $false.
608620

609621
When this parameter is set to $true, device encryption is enabled on the mobile device.
@@ -872,6 +884,8 @@ Accept wildcard characters: False
872884
```
873885

874886
### -MinPasswordLength
887+
**Note**: This setting is supported by Outlook for Android.
888+
875889
The MinPasswordLength parameter specifies the minimum number of characters in the mobile device password.
876890

877891
You can enter any number from 1 through 16 or the value $null. The default value is blank. The maximum password length is 16 characters.

exchange/exchange-ps/exchange/New-MoveRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This cmdlet is available in on-premises Exchange and in the cloud-based service.
1616

1717
Use the New-MoveRequest cmdlet to begin the process of an asynchronous mailbox or personal archive move. You can also check mailbox readiness to be moved by using the WhatIf parameter.
1818

19-
**Note**: After April 15, 2020, you can't use this cmdlet to manually move mailboxes within an Exchange Online organization. You can only use this cmdlet for migrating to and from Exchange Online.
19+
**Note**: After April 15, 2020, you shouldn't use this cmdlet to manually move mailboxes within an Exchange Online organization. You can only use this cmdlet for migrating to and from Exchange Online. If you have issues with a mailbox and want to fix it by moving the mailbox within your Exchange Online organization, please open a Microsoft Support request instead.
2020

2121
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2222

exchange/exchange-ps/exchange/Set-CaseHoldPolicy.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The AddExchangeLocation parameter specifies the mailboxes to add to the list of
116116
To specify a mailbox or distribution group, you can use the following values:
117117
118118
- Name
119-
- SMTP address
119+
- SMTP address. To specify an inactive mailbox, precede the address with a period (.).
120120
- Azure AD ObjectId (You can use the [Get-AzureADUser](https://docs.microsoft.com/powershell/module/azuread/get-azureaduser) cmdlet to obtain this value.)
121121
122122
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"`.
@@ -249,9 +249,8 @@ The RemoveExchangeLocation parameter specifies the existing mailboxes to remove
249249
To specify a mailbox or distribution group, you can use any value that uniquely identifies it. For example:
250250

251251
- Name
252-
- Distinguished name (DN)
253-
- Email address
254-
- GUID
252+
- SMTP address. To specify an inactive mailbox, precede the address with a period (.).
253+
- Azure AD ObjectId (You can use the [Get-AzureADUser](https://docs.microsoft.com/powershell/module/azuread/get-azureaduser) cmdlet to obtain this value.)
255254

256255
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"`.
257256

exchange/exchange-ps/exchange/Set-MobileDeviceMailboxPolicy.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ Mobile device mailbox policies define settings for mobile devices that are used
8888

8989
Some mobile device mailbox policy settings require the mobile device to have specific built-in features that enforce these security and device management settings. If your organization allows all devices, you must set the AllowNonProvisionableDevices parameter to $true. This applies to devices that can't enforce all policy settings.
9090

91+
Some settings in this cmdlet are supported by Outlook for iOS and Android. For more information, see [Leveraging Exchange Online mobile device policies](https://docs.microsoft.com/exchange/clients-and-mobile-in-exchange-online/outlook-for-ios-and-android/secure-outlook-for-ios-and-android#leveraging-exchange-online-mobile-device-policies).
92+
9193
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).
9294

9395
## EXAMPLES
@@ -156,7 +158,15 @@ Accept wildcard characters: False
156158
```
157159
158160
### -AllowBluetooth
159-
The AllowBluetooth parameter specifies whether the Bluetooth capabilities are allowed on the mobile device. The available options are Disable, HandsfreeOnly, and Allow. The default value is Allow.
161+
The AllowBluetooth parameter specifies whether the Bluetooth capabilities are allowed on the mobile device. Valid values are:
162+
163+
- Allow (this is the default value).
164+
- Disable
165+
- HandsfreeOnly
166+
167+
The values Allow or HandsfreeOnly allow synchronization between Outlook for Android and the Outlook for Android wearable app for the associated Microsoft account.
168+
169+
The value Disable disables synchronization between Outlook for Android and the Outlook for Android wearable app for the associated Microsoft account. Any previously synchronized data is deleted. This value does not disable Bluetooth on the Android device or the wearable device, nor does it affect other Android wearable apps.
160170
161171
```yaml
162172
Type: BluetoothType
@@ -605,6 +615,8 @@ Accept wildcard characters: False
605615
```
606616

607617
### -DeviceEncryptionEnabled
618+
**Note**: This setting is supported by Outlook for iOS and Android.
619+
608620
The DeviceEncryptionEnabled parameter specifies whether encryption is enabled on the mobile device. Valid input for this parameter is $true or $false. The default value is $false.
609621

610622
When this parameter is set to $true, device encryption is enabled on the mobile device.
@@ -873,6 +885,8 @@ Accept wildcard characters: False
873885
```
874886

875887
### -MinPasswordLength
888+
**Note**: This setting is supported by Outlook for Android.
889+
876890
The MinPasswordLength parameter specifies the minimum number of characters in the mobile device password.
877891

878892
You can enter any number from 1 through 16 or the value $null. The default value is blank. The maximum password length is 16 characters.

exchange/exchange-ps/exchange/Set-Place.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This cmdlet is available only in the cloud-based service.
1616

1717
Use the Set-Place cmdlet to update room mailboxes with additional metadata, which provides a better search and room suggestion experience.
1818

19-
**Note**: In hybrid environments, this cmdlet doesn't work on the following properties on synchronized room mailboxes: City, CountryOrRegion, GeoCoordinates, Phone, PostalCode, State, and Street. To modify these properties on synchronized room mailboxes, use the Set-User or Set-Mailbox cmdlets in on-premises Exchange.
19+
**Note**: In hybrid environments, this cmdlet doesn't work on the following properties on synchronized room mailboxes: City, CountryOrRegion, GeoCoordinates, Phone, PostalCode, State, and Street. To modify these properties except GeoCoordinates on synchronized room mailboxes, use the Set-User or Set-Mailbox cmdlets in on-premises Exchange.
2020

2121
**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).
2222

0 commit comments

Comments
 (0)