Logo
CAR REVIEW
Windows Vista
Windows 7
Windows Azure
Windows Server
Windows Phone
PREGNANCY
 
 
Windows Server

Administering an Exchange Server 2013 Environment (part 4) - Performing Common Tasks - Creating User Mailboxes

2/18/2014 3:10:15 AM

3. Performing Common Tasks

With two different tools to choose from, determining which to use for a particular task is up to the person performing the task. The decision is based primarily on identifying which tool is most convenient for the task. If creating a new mailbox user, it might be easier to simply log on to the EAC through a browser and create the account, whereas creating 100 new accounts would be easier using a script in the EMS.

Some tasks can be performed in the EAC, and all tasks can be performed in the EMS—but for something as simple as changing the department for a single user, determining the PowerShell cmdlet and parameters might be more challenging than simply using the GUI or Web interfaces.

3.1 Creating User Mailboxes

The creation of a new user mailbox, either for an existing user or in conjunction with the creation of a new user, is an example of a task that can be accomplished from either the Exchange Administration Center or the Exchange Management Shell. This section shows how to perform the task using both tools.

Exchange Server 2013 allows for the creation of four different types of mailboxes:

User mailbox—Owned by a user and used to send and receive messages. This mailbox cannot be used for resource scheduling.

Room mailbox—Intended for room scheduling and not owned by a user. A user account is created with the mailbox, but the account is disabled.

Equipment mailbox—Intended for equipment scheduling. Like the room mailbox, this is not owned by an active user. The associated user account that is created will automatically be disabled.

Linked mailbox—Accessed by a user in a separate, trusted forest.

The following examples create a user mailbox for a new user named Oscar B. Hayve.

Creating a New User Mailbox in the Exchange Administration Center

Creating a new mailbox using the GUI interface of the EAC can be accomplished by following these steps:

1. Start the Exchange Administration Center.

2. In the left navigation control area, click Recipients.

3. In the center tab, click Mailboxes.

4. On the Toolbar, click the plus (+) symbol. The New User Mailbox dialog box appears, as shown in Figure 3.

Image

Figure 3. New User Mailbox dialog box.

5. Enter the user alias of OBHayve.

6. Because you are creating a new user as opposed to mailbox-enabling an existing user, click the New User option button and complete the following fields:

First Name—Type the first name of the user. This field is optional.

Initials—Type the initials of the user. This field is optional.

Last Name—Type the last name of the user. This field is optional.

Display Name—By default, this field is populated with the user’s first name, initials, and last name, if entered. You can modify the name in this field or type one manually if no previous fields were populated.

Name—By default, this field is populated with the user’s first name, initials, and last name, if entered. You can modify the name in this field or type one manually if no previous fields were populated.

Organizational Unit—Click the Browse button to select the organizational unit where the user should reside.

User Logon Name (User Principal Name)—This is the name that the user uses to log on to the mailbox. The user logon name consists of a username and a suffix. Typically, the suffix is the domain name in which the user account resides.

Password—Type the password that the user must use to log on to his mailbox.

Confirm Password—Retype the password that you entered in the Password field.

User Must Change Password at Next Logon—Select this check box if you want to require users to reset the password after their first logon (recommended).

Specify the Mailbox Database—Click the Browse button to display the list of available mailbox databases. Select the mailbox database for the user’s mailbox and click OK.

Manage Archive Storage—Check the box labeled Create Local Archive Storage for This User, then click the Browse button to display the list of available archive storage databases. Select the location for the user’s archive storage and click OK.

Address Book Policy—Choose a different policy if multiples are defined in your organization.

7. When finished, click Save to create the new user and his or her associated mailbox.

8. The procedure is complete at this point.

Creating a New Mailbox in the Exchange Management Shell

Creating a new mailbox from the EMS can be complicated because there are so many parameters to consider. However, by copying the EMS command created by the Exchange Administration Center in the previous steps, you can now paste that command into a text editor and modify the contents, allowing you to create your next test user.

Note that you must also remove the Password System.Security.SecureString and ResetPasswordOnNextLogon $true portions of the command because these were created in the EAC command to populate the password for the account.

You can create your new user, Yasmine B. Guud, by using the following command:

New-Mailbox -Name 'Yasmine B. Guud' -Alias 'YBGuud' -UserPrincipalName
'YBGuud@companyabc.com' -SamAccountName 'YBGuud' -FirstName 'Yasmine'
-Initials 'B' -LastName 'Guud'

After running the preceding command in the Exchange Management Shell, you are prompted for the password. Enter the desired password (carefully, there will not be an option to confirm it) and press Enter.

The password has to be a secure string, so with a little extra code you can pass an initial password as well by entering a command like the following. You can also add the -Password parameter to the New-Mailbox cmdlet.

Set-Mailbox -Identity 'YBGuud' -Password (ConvertTo-SecureString -String
"P@ssword1" -AsPlainText -Force)

Other -----------------
- Windows Server 2012 Administration : Managing Printers with the Print Management Console (part 3) - Using the Print Management Console
- Windows Server 2012 Administration : Managing Printers with the Print Management Console (part 2) - Adding New Printers as Network Shared Resources
- Windows Server 2012 Administration : Managing Printers with the Print Management Console (part 1) - Configuring the Print Management Console
- Windows Server 2008 : Configuring Server Core after Installation (part 4) - Setting the Time, Date, and Time Zone , Joining a Domain
- Windows Server 2008 : Configuring Server Core after Installation (part 3) - Logging Off, Shutting Down, and Rebooting
- Windows Server 2008 : Configuring Server Core after Installation (part 2) - Restoring the Command Prompt , Renaming the Computer
- Windows Server 2008 : Configuring Server Core after Installation (part 1) - Installing Server Core
- Microsoft Exchange Server 2010 : Introducing Journaling - Implementing Journaling, Reading Journal Reports
- Microsoft Exchange Server 2010 : Setting Up Transport Rules (part 5) - Creating New Rules with the Exchange Management Shell
- Microsoft Exchange Server 2010 : Setting Up Transport Rules (part 4) - Creating New Rules with the Exchange Management Console
- Microsoft Exchange Server 2010 : Setting Up Transport Rules (part 3) - Selecting Actions
- Microsoft Exchange Server 2010 : Setting Up Transport Rules (part 2) - Selecting Conditions and Exceptions
- Microsoft Exchange Server 2010 : Setting Up Transport Rules (part 1) - Transport Rules Coexistence Between Exchange 2007 and 2010 , Transport Rules and Server Design Decisions
- Microsoft Systems Management Server 2003 : Analysis and Troubleshooting Tools - Using SMS Trace (part 2)
- Microsoft Systems Management Server 2003 : Analysis and Troubleshooting Tools - Using SMS Trace (part 1) - Obtaining SMS Trace
- Microsoft Systems Management Server 2003 : Analysis and Troubleshooting Tools - Using SMS Service Manager
- Microsoft Systems Management Server 2003 : Analysis and Troubleshooting Tools - Status Message Process Flow
- Microsoft Systems Management Server 2003 : Analysis and Troubleshooting Tools - Working with Status Message Queries
- Microsoft Systems Management Server 2003 : Filtering Status Messages (part 2) - Status Filter Rules
- Microsoft Systems Management Server 2003 : Filtering Status Messages (part 1) - Configuring Status Reporting Properties
 
 
Most view of day
- Microsoft Exchange Server 2010 : Introducing Journaling - Implementing Journaling, Reading Journal Reports
- Zero Touch Installations : Creating and Capturing a Reference Image (part 2) - Install Packages on the Distribution Points, Create a Collection and a Computer Association
- Designing an Update Management Strategy : Updating with System Center Configuration Manager
- Microsoft Exchange Server 2013 : Mailbox management - The need for mailboxes, Naming mailboxes
- Microsoft SharePoint 2013 : Looking at Visio Services (part 1) - Displaying Visio drawings in Visio Services
- Microsoft Exchange Server 2007 : Consolidating a Windows 2000 Domain to a Windows Server 2003 Domain Using ADMT (part 5) - Migrating Computer Accounts
- Microsoft Dynamic AX 2009 : Working with .NET Business Connector (part 1) - Processing Requests and Responses
- Microsoft Visio 2010 : Working with Data - Creating Reports (part 2) - Grouping and Totaling Items in a Report
- Windows Server 2008 R2 file and print services : Services for Network File System, Windows Search Service
- Managing Client Protection : Microsoft Forefront Client Security
Top 10
- Microsoft Lync Server 2013 : Director Troubleshooting (part 3) - Synthetic Transactions,Telnet
- Microsoft Lync Server 2013 : Director Troubleshooting (part 2) - DNS Records, Logs
- Microsoft Lync Server 2013 : Director Troubleshooting (part 1) - Redirects, Certificates
- Microsoft Lync Server 2013 : Administration of the Director Role (part 4) - Services Management, Client Version Filter
- Microsoft Lync Server 2013 : Administration of the Director Role (part 3) - Topology Status
- Microsoft Lync Server 2013 : Administration of the Director Role (part 2) - Ports,Firewall Rules
- Microsoft Lync Server 2013 : Administration of the Director Role (part 1) - Services
- Microsoft Lync Server 2013 : Configuring the Director (part 2) - Web Services Ports,Reverse Proxy
- Microsoft Lync Server 2013 : Configuring the Director (part 1) - SRV Records, Web Services FQDN Overrides
- Sharepoint 2013 : SharePoint Designer 2013 (part 2) - Locking Down SharePoint Designer
 
 
Windows XP
Windows Vista
Windows 7
Windows Azure
Windows Server
Windows Phone
2015 Camaro