Skip to content

Commit 132e7d2

Browse files
committed
Fixes per Issue #7844
1 parent 88a8ce1 commit 132e7d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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

0 commit comments

Comments
 (0)