Skip to content

Commit 0ade073

Browse files
authored
Merge pull request MicrosoftDocs#7845 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents 88a8ce1 + 3c7206b commit 0ade073

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

exchange/exchange-ps/exchange/Get-AddressBookPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This example returns default information about the address book policy All Fabri
4949

5050
### Example 3
5151
```powershell
52-
Get-AddressBookPolicy | where {$_.OfflineAddressBook eq "\Fabrikam All OAB"}
52+
Get-AddressBookPolicy | where {$_.OfflineAddressBook -eq "\Fabrikam All OAB"}
5353
```
5454

5555
This example returns information about all address book policies for which the offline address book (OAB) that the address book policy uses is named Fabrikam All OAB.

exchange/exchange-ps/exchange/Remove-AddressBookPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ Remove-AddressBookPolicy [-Identity] <MailboxPolicyIdParameter>
3131
```
3232

3333
## DESCRIPTION
34-
You can't delete an address book policy if it's assigned to a user. To determine if an address book policy is assigned to a user, run the following command:
34+
You can't delete an address book policy if it's assigned to a user. To determine if an address book policy is assigned to a user, replace the example value Murchison's Class with the name of the ABP and run the following command:
3535

36-
Get-Mailbox | where $._AddressBookPolicy -eq "Murchison's Class"}
36+
`Get-Mailbox -ResultSize unlimited -Filter "AddressBookPolicy -eq '$((Get-AddressBookPolicy "Murchison's Class").DistinguishedName)'"`
3737

3838
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).
3939

exchange/exchange-ps/exchange/Set-Mailbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ The AddressBookPolicy parameter specifies the address book policy that's applied
13281328
- Distinguished name (DN)
13291329
- GUID
13301330

1331-
For more information about address book policies, see [Address book policies in Exchange Server](https://docs.microsoft.com/Exchange/email-addresses-and-address-books/address-book-policies/address-book-policies).
1331+
For more information about address book policies, see [Address book policies in Exchange Server](https://docs.microsoft.com/Exchange/email-addresses-and-address-books/address-book-policies/address-book-policies) or [Address book policies in Exchange Online](/exchange/address-books/address-book-policies/address-book-policies).
13321332

13331333
```yaml
13341334
Type: AddressBookMailboxPolicyIdParameter

exchange/exchange-ps/exchange/Set-MailboxAutoReplyConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
5252

5353
### Example 1
5454
```powershell
55-
Set-MailboxAutoReplyConfiguration -Identity tony -AutoReplyState Scheduled -StartTime "7/10/2018 08:00:00" -EndTime "7/15/2018 17:00:00" -InternalMessage "Internal auto-reply message"
55+
Set-MailboxAutoReplyConfiguration -Identity tony@contoso.com -AutoReplyState Scheduled -StartTime "7/10/2018 08:00:00" -EndTime "7/15/2018 17:00:00" -InternalMessage "Internal auto-reply message"
5656
```
5757

5858
This example configures Automatic Replies for Tony's mailbox to be sent between the specified start and end dates and includes an internal message.
5959

6060
### Example 2
6161
```powershell
62-
Set-MailboxAutoReplyConfiguration -Identity tony -AutoReplyState Enabled -InternalMessage "Internal auto-reply message." -ExternalMessage "External auto-reply message."
62+
Set-MailboxAutoReplyConfiguration -Identity tony@contoso.com -AutoReplyState Enabled -InternalMessage "Internal auto-reply message." -ExternalMessage "External auto-reply message."
6363
```
6464

6565
This example configures Automatic Replies for Tony's mailbox to be sent and includes an internal and an external message.

0 commit comments

Comments
 (0)