[This topic is in progress.]

Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2011-05-04

Use the Get-DeliveryAgentConnector cmdlet to retrieve information about a specific delivery agent connector in your organization.

Syntax

Get-DeliveryAgentConnector [-Identity <DeliveryAgentConnectorIdParameter>] [-DomainController <Fqdn>]

Detailed Description

Delivery agent connectors are used to route messages addressed to foreign systems that don't use the SMTP protocol. When a message is routed to a delivery agent connector, the associated delivery agent performs the content conversion and message delivery. Delivery agent connectors allow queue management of foreign connectors, thereby eliminating the need for storing messages on the file system in Drop and Pickup directories. For more information, see Understanding Delivery Agents.

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 "Delivery agent connectors" entry in the Transport Permissions topic.

Parameters

Parameter Required Type Description

DomainController

Optional

Microsoft.Exchange.Data.Fqdn

The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory.

Identity

Optional

Microsoft.Exchange.Configuration.Tasks.DeliveryAgentConnectorIdParameter

The Identity parameter specifies the GUID or name of the delivery agent connector.

Input Types

To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.

Return Types

To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.

Examples

EXAMPLE 1

This example reads the configuration of the delivery agent connector Contoso X.400 Connector from Active Directory and displays all of its properties in a list format.

Copy Code
Get-DeliveryAgentConnector "Contoso X.400 Connector" | Format-List

EXAMPLE 2

This example retrieves a list of all delivery agent connectors in your organization and displays their names and delivery protocols in a table format.

Copy Code
Get-DeliveryAgentConnector | Format-Table Name,DeliveryProtocol