Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-11-16
Use the Export-AutoDiscoverConfig cmdlet to create or update a service connection point for an Autodiscover service pointer in a target Exchange forest on a computer running Microsoft Exchange Server 2010 that has the Client Access server role installed.
Syntax
Export-AutoDiscoverConfig -TargetForestDomainController
<String> [-Confirm [<SwitchParameter>]] [-DeleteConfig
<$true | $false>] [-DomainController <Fqdn>]
[-MultipleExchangeDeployments <$true | $false>]
[-PreferredSourceFqdn <Fqdn>] [-SourceForestCredential
<PSCredential>] [-TargetForestCredential
<PSCredential>] [-WhatIf [<SwitchParameter>]]
|
Detailed Description
The Autodiscover service connection point pointer resides in Active Directory and contains the names of the Exchange Web Services URLs.
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 "Autodiscover service configuration settings" entry in the Client Access Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
TargetForestDomainController |
Required |
System.String |
The TargetForestDomainController parameter specifies the domain controller that you want to export the Autodiscover configuration to. |
Confirm |
Optional |
System.Management.Automation.SwitchParameter |
The Confirm switch causes the command to pause processing and requires you to acknowledge what the command will do before processing continues. You don't have to specify a value with the Confirm switch. |
DeleteConfig |
Optional |
System.Boolean |
The DeleteConfig parameter causes the command to delete your configuration settings on the service connection point object. |
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. |
MultipleExchangeDeployments |
Optional |
System.Boolean |
The MultipleExchangeDeployments parameter specifies
whether multiple Exchange deployments exist. This setting should be
set to |
PreferredSourceFqdn |
Optional |
Microsoft.Exchange.Data.Fqdn |
The PreferredSourceFqdn parameter specifies the FQDN of the Active Directory domain for the Autodiscover pointer service connection point object. |
SourceForestCredential |
Optional |
System.Management.Automation.PSCredential |
The SourceForestCredential parameter specifies the credentials to use when connecting to the source forest. |
TargetForestCredential |
Optional |
System.Management.Automation.PSCredential |
The TargetForestCredential parameter specifies the credentials to use to connect to the target forest. |
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
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 creates a service connection point object to connect to another Active Directory forest so that Outlook 2010 or Outlook 2007 clients can automatically connect to their mailbox without having to set up a profile.
Copy Code | |
---|---|
Export-AutoDiscoverConfig -TargetForestDomainController targetForestName |
EXAMPLE 2
This example specifies that Exchange 2010 is deployed in more than one Active Directory forest while establishing an Autodiscover service connection point to the target domain controller in another Active Directory forest.
Copy Code | |
---|---|
Export-AutoDiscoverConfig -TargetForestDomainController targetForestName -MultipleExchangeDeployments $true |