Set-OrganizationConfig
Applies to: Exchange Server 2007 SP1, Exchange Server 2007 SP2, Exchange Server 2007 SP3
Use the Set-OrganizationConfig cmdlet to configure various settings of an Exchange organization.
Syntax
Set-OrganizationConfig [-AlwaysQuoteDisplayName <$true | $false>] [-Confirm [<SwitchParameter>]] [-DomainController <Fqdn>] [-ManagedFolderHomepage <String>] [-MicrosoftExchangeRecipientEmailAddresses <ProxyAddressCollection>] [-MicrosoftExchangeRecipientEmailAddressPolicyEnabled <$true | $false>] [-MicrosoftExchangeRecipientPrimarySmtpAddress <SmtpAddress>] [-MicrosoftExchangeRecipientReplyRecipient <RecipientIdParameter>] [-SCLJunkThreshold <Int32>] [-ShowInlineAttachments <$true | $false>] [-UseRusServer <String>] [-WhatIf [<SwitchParameter>]]
Set-OrganizationConfig [-AlwaysQuoteDisplayName <$true | $false>] [-Confirm [<SwitchParameter>]] [-DomainController <Fqdn>] [-Instance <Organization>] [-ManagedFolderHomepage <String>] [-MicrosoftExchangeRecipientEmailAddresses <ProxyAddressCollection>] [-MicrosoftExchangeRecipientEmailAddressPolicyEnabled <$true | $false>] [-MicrosoftExchangeRecipientPrimarySmtpAddress <SmtpAddress>] [-MicrosoftExchangeRecipientReplyRecipient <RecipientIdParameter>] [-SCLJunkThreshold <Int32>] [-ShowInlineAttachments <$true | $false>] [-UseRusServer <String>] [-WhatIf [<SwitchParameter>]]
Detailed Description
To run the Set-OrganizationConfig cmdlet, 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 Microsoft Exchange Server 2007, see Permission Considerations.
Parameters
Parameter | Required | Type | Description | ||
---|---|---|---|---|---|
AlwaysQuoteDisplayName |
Optional |
System.Boolean |
The AlwaysQuoteDisplayName parameter causes RFC822 display names to be enclosed in quotation marks before a message is encoded for clients that do not conform to RFC standards. |
||
Confirm |
Optional |
System.Management.Automation.SwitchParameter |
The Confirm parameter 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 parameter. |
||
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
To specify the fully qualified domain name (FQDN) of the domain controller that retrieves this configuration information from the Active Directory directory service, include the DomainController parameter in the command. |
||
Instance |
Optional |
Microsoft.Exchange.Data.Directory.SystemConfiguration.Organization |
The Instance parameter enables you to pass an entire object to the command to be processed. It is mainly used in scripts where an entire object must be passed to the command. |
||
ManagedFolderHomepage |
Optional |
System.String |
The ManagedFolderHomepage parameter specifies the URL of the Web page that is displayed when users click the Managed Folders folder in Microsoft Outlook. If a URL is not specified, Outlook does not display a managed folders home page. |
||
MicrosoftExchangeRecipientEmailAddresses |
Optional |
Microsoft.Exchange.Data.ProxyAddressCollection |
The MicrosoftExchangeRecipientEmailAddresses parameter specifies one or more e-mail addresses for the Microsoft Exchange recipient. All valid Exchange 2007 e-mail address types may be used. You can specify multiple values for this parameter as a comma-delimited list. If the MicrosoftExchangeRecipientEmailAddressPolicyEnabled parameter is set to E-mail addresses that you specify by using the MicrosoftExchangeRecipientEmailAddresses parameter replace any existing e-mail addresses that are already configured. |
||
MicrosoftExchangeRecipientEmailAddressPolicyEnabled |
Optional |
System.Boolean |
The MicrosoftExchangeRecipientEmailAddressPolicyEnabled parameter specifies whether the default e-mail address policy is automatically applied to the Microsoft Exchange recipient. The default value is If you change the value of the MicrosoftExchangeRecipientEmailAddressPolicyEnabled parameter from |
||
MicrosoftExchangeRecipientPrimarySmtpAddress |
Optional |
Microsoft.Exchange.Data.SmtpAddress |
The MicrosoftExchangeRecipientPrimarySmtpAddress parameter specifies the primary return SMTP e-mail address for the Microsoft Exchange recipient. If the MicrosoftExchangeRecipientEmailAddressPolicyEnabled parameter is set to If you modify the value of the MicrosoftExchangeRecipientPrimarySmtpAddress parameter, the value is automatically added to the list of e-mail addresses that are defined in the MicrosoftExchangeRecipientRecipientEmailAddresses parameter. The MicrosoftExchangeRecipientPrimarySmtpAddress parameter is meaningful only if the Microsoft Exchange recipient has more than one defined SMTP e-mail addresses. If the MicrosoftExchangeRecipientRecipientEmailAddresses parameter has only one defined SMTP e-mail address, the value of the MicrosoftExchangeRecipientPrimarySmtpAddress parameter and the MicrosoftExchangeRecipientRecipientEmailAddresses parameter are the same. |
||
MicrosoftExchangeRecipientReplyRecipient |
Optional |
Microsoft.Exchange.Configuration.Tasks.RecipientIdParameter |
The MicrosoftExchangeRecipientReplyRecipient parameter specifies the recipient that should receive messages that are sent to the Microsoft Exchange recipient. Typically, you would configure a mailbox to receive the messages that are sent to the Microsoft Exchange recipient. This parameter can take any of the following values for the specified recipient:
If you don't configure a recipient for the Microsoft Exchange recipient, messages that are sent to the Microsoft Exchange recipient are discarded. |
||
SCLJunkThreshold |
Optional |
System.Int32 |
The SCLJunkThreshold parameter specifies the spam confidence level (SCL) threshold. Messages with an SCL greater than the value that you specify for the SCLJunkThreshold parameter are moved to the Junk E-mail folder. Valid values are integers from 0 through 9, inclusive. |
||
ShowInlineAttachments |
Optional |
System.Boolean |
The ShowInlineAttachments parameter causes the inbound conversion of messages so that they show inline attachments in the attachment well. This conversion is for clients that set an inline type but that do not reference the content. |
||
UseRusServer |
Optional |
System.String |
The UseRusServer parameter instructs the command to use the specified Mailbox server on which the Address List service is running to obtain and then set mailbox and Active Directory user attributes. The Address List service is a component in the Exchange System Attendant service. The Address List service creates and maintains Exchange-specific attribute values in Active Directory. You can use the Address List service to update recipient objects in a domain by using specific information, such as address list membership and e-mail addresses. |
||
WhatIf |
Optional |
System.Management.Automation.SwitchParameter |
The WhatIf parameter instructs the command to simulate the actions that it would take on the object. By using the WhatIf parameter, 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 parameter. |
Input Types
Return Types
Errors
Error | Description |
---|---|
Exceptions
Exceptions | Description |
---|---|
Example
This example shows how to use the Set-OrganizationConfig command to specify the URL of the organization's managed folders home page. The managed folders home page is displayed when users click the Managed Folders folder in Outlook. It enables users to view the managed folders in their mailbox and to add or delete them.
Set-OrganizationConfig -ManagedFolderHomepage "http://contoso/managedfolderhomepage.htm"