Applies to: Exchange Server 2007
Topic Last Modified: 2007-06-05
Use the Remove-AddressList cmdlet to remove an existing address list.
Syntax
Remove-AddressList -Identity
<AddressListIdParameter> [-DomainController <Fqdn>]
[-Recursive <SwitchParameter>]
|
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.AddressListIdParameter |
Use the Identity parameter to specify the GUID, distinguished name or address list name that represents a specific address list. You can also include the path by using the format Path\AddressListName. You can omit the parameter label Identity so that only the address list name or GUID is supplied. |
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
This parameter specifies the domain controller to use to remove the address list from the Active Directory directory service. |
Recursive |
Optional |
System.Management.Automation.SwitchParameter |
This parameter specifies whether the command will remove all child address lists of the address list specified by the Identity parameter. If you do not specify this parameter and the address list to remove has child address lists, the command will fail. |
Detailed Description
To run the Remove-AddressList cmdlet, To perform this procedure, the account you use must be delegated the following:
- Exchange Organization Administrator role
For more information about permissions, delegating roles, and the rights that are required to administer Exchange Server 2007, see Permission Considerations.
Input Types
Return Types
Errors
Error | Description |
---|---|
|
Exceptions
Exceptions | Description |
---|---|
|
|
Example
The following example shows how to remove an address list with the Name "Address_List_1", and all of its child address lists.
Copy Code | |
---|---|
Remove-AddressList -Identity "Address_List_1" -Recursive |
Use the Get-AddressList cmdlet, piped to format-list, to get the GUID, distinguished name, or path and name of an existing address list. Or use Get-AddressList to get a specific existing address list, and then pipe the output directly to Remove-AddressList.