Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-11-16
Use the Enable-RemoteMailbox cmdlet to create a mailbox in the cloud-based service for an existing user in the on-premises Active Directory.
Syntax
Enable-RemoteMailbox -Identity <UserIdParameter>
[-Alias <String>] [-Confirm [<SwitchParameter>]]
[-DisplayName <String>] [-DomainController <Fqdn>]
[-PrimarySmtpAddress <SmtpAddress>] [-RemoteRoutingAddress
<ProxyAddress>] [-WhatIf [<SwitchParameter>]]
|
Enable-RemoteMailbox -Identity <UserIdParameter>
-Equipment <SwitchParameter> [-Alias <String>]
[-Confirm [<SwitchParameter>]] [-DisplayName <String>]
[-DomainController <Fqdn>] [-PrimarySmtpAddress
<SmtpAddress>] [-RemoteRoutingAddress <ProxyAddress>]
[-WhatIf [<SwitchParameter>]]
|
Enable-RemoteMailbox -Identity <UserIdParameter>
[-Alias <String>] [-Confirm [<SwitchParameter>]]
[-DisplayName <String>] [-DomainController <Fqdn>]
[-PrimarySmtpAddress <SmtpAddress>] [-RemoteRoutingAddress
<ProxyAddress>] [-WhatIf [<SwitchParameter>]]
|
Enable-RemoteMailbox -Identity <UserIdParameter>
-Room <SwitchParameter> [-Alias <String>] [-Confirm
[<SwitchParameter>]] [-DisplayName <String>]
[-DomainController <Fqdn>] [-PrimarySmtpAddress
<SmtpAddress>] [-RemoteRoutingAddress <ProxyAddress>]
[-WhatIf [<SwitchParameter>]]
|
Enable-RemoteMailbox -Identity <UserIdParameter>
[-Alias <String>] [-Archive <SwitchParameter>]
[-ArchiveName <MultiValuedProperty>] [-Confirm
[<SwitchParameter>]] [-DisplayName <String>]
[-DomainController <Fqdn>] [-PrimarySmtpAddress
<SmtpAddress>] [-WhatIf [<SwitchParameter>]]
|
Detailed Description
The Enable-RemoteMailbox cmdlet mail-enables an existing on-premises user. The mail-enabled user contains a specific attribute that indicates that an associated mailbox in the service should be created when the user is synchronized to the service using directory synchronization.
Directory synchronization must be configured correctly for a mailbox to be created in the service. Creation of the mailbox in the service isn't immediate and depends on the directory synchronization schedule.
For more information about remote mailboxes, see Understanding Recipients.
Important: |
---|
The policies that you apply to recipients in the on-premises Exchange organization, such as Unified Messaging or compliance policies, aren't applied to mailboxes in the service. You must configure policies in the service if you want policies to be applied to recipients in the service. |
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 "Remote mailboxes" entry in the Mailbox Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.UserIdParameter |
The Identity parameter takes one of the following values:
|
Equipment |
Required |
System.Management.Automation.SwitchParameter |
The Equipment switch specifies that the mailbox in the service should be created as an equipment resource mailbox. You can't use the Equipment switch if you specified the Room switch. |
Room |
Required |
System.Management.Automation.SwitchParameter |
The Room switch specifies that the mailbox in the service should be created as a room resource mailbox. You can't use the Room switch if you specified the Equipment switch. |
Alias |
Optional |
System.String |
The Alias parameter specifies the alias of the user and its associated mailbox in the service. An alias can contain letters, numbers, and the following punctuation marks and symbols:
|
Archive |
Optional |
System.Management.Automation.SwitchParameter |
The Archive switch specifies whether to create an archive mailbox in the service in addition to the mailbox created in the service. You don't have to specify a value with this switch. |
ArchiveName |
Optional |
Microsoft.Exchange.Data.MultiValuedProperty |
The ArchiveName parameter specifies the name of the archive mailbox. Use this parameter to change the name of the archive. |
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. |
DisplayName |
Optional |
System.String |
The DisplayName parameter specifies the display name for the mailbox that's created in the service. |
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. |
PrimarySmtpAddress |
Optional |
Microsoft.Exchange.Data.SmtpAddress |
The PrimarySmtpAddress parameter specifies the primary
SMTP address for the mail user. By default, the primary SMTP
address is generated based on the default e-mail address policy. If
you specify a primary SMTP address by using this parameter, the
cmdlet sets the EmailAddressPolicyEnabled attribute of the
mail user to |
RemoteRoutingAddress |
Optional |
Microsoft.Exchange.Data.ProxyAddress |
The RemoteRoutingAddress parameter specifies the SMTP address of the mailbox in the service that this user is associated with. If you've configured mail flow between the on-premises organization and the service, you don't need to specify this parameter. The remote routing address is calculated automatically. |
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 mail-enables an existing on-premises user and creates an associated mailbox in the service. The remote routing address doesn't need to be specified because mail flow between the on-premises organization and the service has been configured. Using this configuration, the Enable-RemoteMailbox cmdlet automatically calculates the SMTP address of the mailbox to be used with the RemoteRoutingAddress parameter. This example also assumes directory synchronization has been configured.
Note: |
---|
To mail-enable an existing user and create an associated mailbox in the service, run the New-RemoteMailbox cmdlet and specify the identity of the existing user. |
Copy Code | |
---|---|
Enable-RemoteMailbox "Kim Akers" |
After the user is mail-enabled, directory synchronization synchronizes the mail-enabled user to the service and the associated mailbox is created.
EXAMPLE 2
This example does the following:
- Mail-enables an existing on-premises user.
- Creates the associated mailbox in the service.
- Creates an archive mailbox in the service for the mailbox.
As in Example 1, this example assumes that mail flow and directory synchronization have been properly configured.
To mail-enable an on-premises user, create the associated mailbox in the service, enable the archive mailbox in the service, and include the Archive switch with the Enable-RemoteMailbox cmdlet.
Copy Code | |
---|---|
Enable-RemoteMailbox "Kim Akers" -Archive |