Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-03-08
Use the Set-AddressBookPolicy cmdlet to change the settings of an address book policy.
Syntax
Set-AddressBookPolicy -Identity
<MailboxPolicyIdParameter> [-AddressLists
<AddressListIdParameter[]>] [-Confirm
[<SwitchParameter>]] [-DomainController <Fqdn>]
[-GlobalAddressList <GlobalAddressListIdParameter>] [-Name
<String>] [-OfflineAddressBook
<OfflineAddressBookIdParameter>] [-RoomList
<AddressListIdParameter>] [-WhatIf
[<SwitchParameter>]]
|
Detailed Description
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Address book policies" entry in the Mailbox Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.MailboxPolicyIdParameter |
The Identity parameter specifies the identity of the address book policy that you want to modify. |
AddressLists |
Optional |
Microsoft.Exchange.Configuration.Tasks.AddressListIdParameter[] |
The AddressLists parameter specifies the address lists that will be used by mailbox users who are assigned this address book policy. This parameter accepts multiple values, which should be separated by a comma. |
Confirm |
Optional |
System.Management.Automation.SwitchParameter |
The Confirm switch can be used to suppress the
confirmation prompt that appears by default when this cmdlet is
run. To suppress the confirmation prompt, use the syntax
|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that writes this configuration change to Active Directory. |
GlobalAddressList |
Optional |
Microsoft.Exchange.Configuration.Tasks.GlobalAddressListIdParameter |
The GlobalAddressList parameter specifies the identity of the global address list (GAL) that will be used by mailbox users who are assigned this address book policy. You can specify only one GAL for each address book policy. |
Name |
Optional |
System.String |
The Name parameter specifies the name that you want this address book policy to be called. Use this parameter to change the name of the address book policy. |
OfflineAddressBook |
Optional |
Microsoft.Exchange.Configuration.Tasks.OfflineAddressBookIdParameter |
The OfflineAddressBook parameter specifies the identity of the offline address book (OAB) that will be used by mailbox users who are assigned this address book policy. You can specify only one OAB for each address book policy. |
RoomList |
Optional |
Microsoft.Exchange.Configuration.Tasks.AddressListIdParameter |
The RoomList parameter specifies the name of the room address list. |
WhatIf |
Optional |
System.Management.Automation.SwitchParameter |
The WhatIf switch instructs the command to simulate the actions that it would take on the object. By using the WhatIf switch, you can view what changes would occur without having to apply any of those changes. You don't have to specify a value with the WhatIf switch. |
Input Types
Return Types
Errors
Error | Description |
---|---|
|
Examples
EXAMPLE 1
This example changes the OAB that the address book policy All Fabrikam ABP uses to Fabrikam-OAB-2.
Copy Code | |
---|---|
Set-AddressBookPolicy -Identity "All Fabrikam ABP" -OfflineAddressBook \Fabrikam-OAB-2 -GlobalAddressList "\All Fabrikam GAL" |