Applies to: Exchange Server 2007
Topic Last Modified: 2007-06-11
Use the Remove-ReceiveConnector cmdlet to delete a Receive connector on a computer that has the Hub Transport server role or the Edge Transport server role installed.
Syntax
Remove-ReceiveConnector -Identity
<ReceiveConnectorIdParameter> [-DomainController
<Fqdn>]
|
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.ReceiveConnectorIdParameter |
Use the Identity parameter to specify the GUID or connector name that represents a specific Receive connector. You can also include the server name by using the format ServerName\ConnectorName. |
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
To specify the fully qualified domain name of the domain controller that writes this configuration change to the Active Directory directory service, include the DomainController parameter on the command. The DomainController parameter is not supported on computers that have the Edge Transport server role installed. The Edge Transport server role writes and reads only to the local Active Directory Application Mode (ADAM) instance. |
Detailed Description
The Remove-ReceiveConnector cmdlet deletes the object and the configuration information for a Receive connector.
Caution: |
---|
Although a Receive connector is configured on a local Hub Transport server or an Edge Transport server, deleting a Receive connector may affect mail flow throughout the organization. |
To run the Remove-ReceiveConnector cmdlet, the account you use must be delegated the following:
- Exchange Server Administrator role and local Administrators
group for the target server
To run the Remove-ReceiveConnector cmdlet on a computer that has the Edge Transport server role installed, you must log on by using an account that is a member of the local Administrators group on that computer.
For more information about permissions, delegating roles, and the rights that are required to administer Microsoft Exchange Server 2007, see Permission Considerations.
Input Types
Return Types
Errors
Error | Description |
---|---|
|
|
Example
The following code examples shows three commands that use the Remove-ReceiveConnector cmdlet.
When you run the first example, you will be prompted for the Identity parameter. When you are prompted for the Identity parameter, enter the Identity parameter as a string as follows, for example, as a GUID: de2a614d-dd4e8-4ef7-b113-b51bd14ac3e1 or as a connector name: "Contoso.com Receive Connector".
In the second example, the command deletes the object and configuration information for the Receive connector that is specified by the Identity parameter.
In the third example, the command runs without the Identity parameter label, leaving only the Identity parameter value.
Copy Code | |
---|---|
Remove-ReceiveConnector Remove-ReceiveConnector -Identity "Contoso.com Receive Connector" Remove-ReceiveConnector "Contoso.com Receive Connector" |