Вы находитесь на странице: 1из 14

2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Migrating a small organization FEATURED PRODUCT

from Exchange 2010 to


Exchange 2016 (Part 2)
Steve Goodman 0  9 Views  1

POSTED ON NOVEMBER 16, 2015

 SHARE ON FACEBOOK  TWEET IT   


Get expert tech
reports and guides
for FREE!

Join 900,000 fellow IT Pros...

and be among the rst to learn


about new security threats, system
optimization tricks, and the hottest
technologies in the industry.

Email address

CO U N T M E I N !

LATEST PODCAST

If you would like to read the other parts in this article series please go to: TechGenix Xtreme
Blockchain expl… Share

Migrating a small organization from Exchange 2010 to Exchange 2016


(Part 1)
Migrating a small organization from Exchange 2010 to Exchange 2016
Cookie policy
(Part 3)
Migrating a small organization from Exchange 2010 to Exchange 2016
(Part 4)
Migrating a small organization from Exchange 2010 to Exchange 2016
FEATURED FREEWARE
(Part 5)

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 1/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

Migrating a small organization from Exchange 2010 to Exchange 2016  1 COMMENT  SHARE

(Part 6)

Preparing
SECTIONS 
the server
TECH NEWS  TUTORIALS
for Exchange
REVIEWS NEWSLETTERS VIDEOS ABOUT  

2016 Get a free copy of


the new
SolarWinds

Con guring disks Permissions


Analyzer!

We’ll now create our first volume for the Page File. In our design, this is not
to be located on a mount point, so we don’t need to create a folder structure
to support it. We can simple right click and choose New Simple Volume:
RECOMMENDED

Exchange 2013
DAG with
Dynamic
Quorum (Part
1)
9 Windows
Figure 1: Creating a new volume for the page file DNS mistakes
to avoid
The New Simple Volume Wizard will launch. We’ll be provided with the
opportunity to assign our drive letter, mount in an empty folder (which we
Mail Relay in
will use for the database and log volumes) or not to assign a drive letter or Exchange
Server 2016
path. We’ll choose a drive letter, in this case, D:

FOLLOW US

 

Figure 2: Assigning a drive letter to our page file disk

After choosing the drive letter, we’ll then move on to formatting our first
disk.

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 2/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 3: Formatting our page file disk

After formatting the page file volume, we will format and mount our database
and log volumes.

The process to create the ReFS volume with the correct settings requires
PowerShell.

An example function is shown below that we will use to create the mount
point, create a partition and format the volume with the right setting.

function Format-ExchangeDisk

Like what you're reading? Get the latest updates and tech guides
in your inbox.

Enter your email address...

G E T E X C L U S I V E U P D AT E S

param($Disk, $Label, $BaseDirectory="C:\ExchangeDatabases")

New-Item -ItemType Directory -Path "$($BaseDirectory)\$($Label)"

$Partition = Get-Disk -Number $Disk | New-Partition -


UseMaximumSize

if ($Partition)

$Partition | Format-Volume -FileSystem ReFS -NewFileSystemLabel


$Label -SetIntegrityStreams:$False

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 3/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

$Partition | Add-PartitionAccessPath -AccessPath  1 COMMENT  SHARE

"$($BaseDirectory)\$($Label)"

} 
SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT 

Check and alter the script for your needs. To use the function, paste the script
into a PowerShell prompt. The new function will be available as a cmdlet,
Format-ExchangeDisk.

Before using the script we need to know which disks to format. In Disk
Management examine the list of disks. We’ll see the first one to format as
ReFS is Disk 2:

Figure 4: Checking the first disk number to use for Exchange data

Format the disk using the PowerShell function we’ve created above:

Figure 5: Formatting an Exchange data disk using ReFS

After formatting all disks, they should show with correct corresponding
labels:

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 4/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 6: Viewing disks after formatting as ReFS

Con guring Page le sizes


Page file sizes for each Exchange Server must be configured correctly. Each
server should have the page file configured to be the amount of RAM, plus
10MB, up to a maximum of 32GB + 10MB.

To configure the Page file size, right click on the Start Menu and choose
System:

Figure 7: Accessing system settings

The system information window should open within the control panel.
Choose Advanced system settings, as shown below:

Figure 8: Navigating to Advanced system settings

Next, the System Properties window will appear with the Advanced tab
selected. Within Performance, choose Settings:

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 5/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 9: Opening Performance settings

We will then adjust the Virtual Memory settings and perform the following
actions:

Unselect Automatically manage paging file size for all drives


Set a page file size to match the current virtual machine RAM, plus 10MB,
for example:
8GB RAM = 8192MB RAM = 8202MB page file
16GB RAM = 16384MB RAM = 16394MB page file

You’ll see the result of this for our virtual machine illustrated below:

Figure 10: Configuring the page file size

After making this change you may be asked to reboot.

You don’t need to do so at this stage as we will be installing some pre-


requisites to support the Exchange installation.

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 6/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

Con guring Exchange 2016


prerequisites
SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

To install the pre-requisites, launch an elevated PowerShell prompt, and


execute the following command:

Install-WindowsFeature AS-HTTP-Activation, Desktop-Experience,


NET-Framework-45-Features, RPC-over-HTTP-proxy, RSAT-Clustering,
RSAT-Clustering-CmdInterface, RSAT-Clustering-Mgmt, RSAT-
Clustering-PowerShell, Web-Mgmt-Console, WAS-Process-Model,
Web-Asp-Net45, Web-Basic-Auth, Web-Client-Auth, Web-Digest-
Auth, Web-Dir-Browsing, Web-Dyn-Compression, Web-Http-Errors,
Web-Http-Logging, Web-Http-Redirect, Web-Http-Tracing, Web-
ISAPI-Ext, Web-ISAPI-Filter, Web-Lgcy-Mgmt-Console, Web-
Metabase, Web-Mgmt-Console, Web-Mgmt-Service, Web-Net-Ext45,
Web-Request-Monitor, Web-Server, Web-Stat-Compression, Web-
Static-Content, Web-Windows-Auth, Web-WMI, Windows-Identity-
Foundation, RSAT-ADDS

After installation of the components a reboot is required before we can install


the other pre-requisites needed for Exchange 2016 installation.

First we’ll install the .Net Framework 4.5.2.

Figure 11: Installing .Net Framework 4.5.2

Next, install the Microsoft Unified Communications Managed API Core


Runtime, version 4.0.

After download, launch the installer. After copying a number of files


required, the installer provides information about the components it will
install as part of the Core Runtime setup:

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 7/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 12: Installing the Unified Comms Managed API

No special configuration is needed after install as it’s a supporting component


used by Unified Messaging.

Our final pre-requisite is to download and extract the Exchange 2016


installation files themselves.

At the time of writing, the latest version of Exchange 2016 is the RTM
version.

Note that because each Cumulative Update and Service Pack for Exchange
2016, you do not need to install the RTM version and update if a CU/SP has
been released. Download the latest version available.

After download, run the self-extracting executable and choose an appropriate


location to extract files to:

Figure 13: Extracting the files for Exchange 2016

Installing Exchange Server 2016


We will install Exchange Server 2016 via the command line. It’s also possible
to perform the setup using the GUI, however the command line options allow
us to perform each critical component, such as schema updates, step-by-step.

Installation Locations
As recommended by the Exchange 2016 Role Requirements Calculator, we
will be placing the Transport Database - the part of Exchange that
Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)
http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 8/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

temporarily stores in-transit messages - on the system drive, therefore it  1 COMMENT  SHARE

makes a lot of sense to use the default locations for Exchange installation.

The default installation location for Exchange 2016 is within C:\Program


SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  
Files\Microsoft\Exchange Server\V15.

Preparing Active Directory


Our first part of the Exchange 2016 installation is to perform the Schema
update. This step is irreversible; therefore, it is essential that a full backup of
Active Directory is performed before we perform this step.

While logged on as a domain user that's a member of the Enterprise Admins


and Schema Admins, launch an elevated command prompt and change
directory into the location we've extracted the Exchange setup files,
C:\Exchange2016.

Execute setup.exe with the following switches to prepare the Active


Directory schema:

setup.exe /PrepareSchema /IAcceptExchangeServerLicenseTerms

Figure 14: Preparing the schema for Exchange 2016

Expect the schema update to take between 5 and 15 minutes to execute.

Next prepare Active Directory. This will prepare the Configuration Container
of our Active Directory forest, upgrading the AD objects that support the
Exchange Organization. We'll perform this preparation using the following
command:

setup.exe /PrepareAD /IAcceptExchangeServerLicenseTerms

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 9/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 15: Preparing Active Directory for Exchange 2016

Our final step to prepare Active Directory is to run the domain preparation.

Our smaller organization is comprised of a single domain, and therefore we


can run the following command:

setup.exe /PrepareDomain /IAcceptExchangeServerLicenseTerms

Figure 16: Preparing the domain for Exchange 2016

If you have more than one domain within the same Active Directory forest
with mail-enabled users, then you will need to prepare each domain. The
easiest way to prepare multiple domains is to replace the /PrepareDomain
switch with /PrepareAllDomains.

Performing Exchange 2016 Setup


To install Exchange 2016 via setup.exe we will use the /Mode switch to
specify that we will be performing an Install.

In addition to the /Mode switch we need to specify the role that we’ll install,
the Mailbox role.

setup.exe /Mode:Install /Roles:Mailbox  


/IAcceptExchangeServerLicenseTerms

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 10/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Figure 17: Installing Exchange 2016 server

After a successful installation, reboot the server.

Summary
In part two of this series we have completed the server preparation and then
installed Exchange Server 2016. In the next part of this series we will
perform post installation checks and configuration.

If you would like to read the other parts in this article series please go to:

Migrating a small organization from Exchange 2010 to Exchange 2016


(Part 1)
Migrating a small organization from Exchange 2010 to Exchange 2016
(Part 3)
Migrating a small organization from Exchange 2010 to Exchange 2016
(Part 4)
Migrating a small organization from Exchange 2010 to Exchange 2016
(Part 5)
Migrating a small organization from Exchange 2010 to Exchange 2016
(Part 6)

Featured Links

READ NEXT

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 11/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Migrating a small Migrating a small Migrating Public


organization from organization from Folders to
Exchange 2010 to Exchange 2010 to Exchange 2013
Exchange 2013 Exchange 2013 (Part 2)
(Part 2) (Part 3)

Upgrading Active
Directory forests
to Windows
Server 2016 Exchange 2013 Removing an
Mail Flow (Part 1) Exchange Server
Mailbox from your
environment

TECHGENIX » MS EXCHANGE SERVER » DEPLOYMENT & MIGRATION » MIGRATING A SMALL


ORGANIZATION FROM EXCHANGE 2010 TO EXCHANGE 2016 (PART 2)

AUTHOR

Steve Goodman

Steve is a 5 times recipient of the MVP (Microsoft’s Most


Valuable Professional) award from Microsoft, is a
regular international conference speaker, podcast host,
regular blogger, plus he is the author of a number of
popular Exchange books. Steve is Head of Messaging
and UC at top Of ce 365 partner Content and Code,
responsible for their Exchange and Skype for Business
offerings. Steve has worked on a vast number of
Exchange and Of ce 365 projects across customers
large and small, often with complex requirements and
loves to share his expertise.

1 COMMENT

Sean Siegel July 10, 2017 at 5:08 pm R E P L Y

I believe the ‘AS-HTTP-Activation’ prerequisite is for 2012


and not 2016. Source: https://technet.microsoft.com/en-
us/library/bb691354(v=exchg.160).aspx

Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)


http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 12/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

Your email address will not be published. Required fields are marked  1 COMMENT  SHARE

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

Name* Email* Website

POST COMMENT

NOTIFY ME OF FOLLOW-UP COMMENTS BY EMAIL .

NOTIFY ME OF NEW POSTS BY EMAIL.

TECHGENIX RECENT POSTS

6 can’t-miss tips
to improve
Windows 10 performance

Skygofree
malware poses
TechGenix reaches millions of IT
serious danger to Android
Professionals every month, and has
users
set the standard for providing free
technical content through its Self-aware robots
growing family of websites, — science- ction
empowering them with the answers or reality?
and tools that are needed to set up,
configure, maintain and enhance
their networks.

 
Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2)
http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 13/14
2/5/2018 Migrating a small organization from Exchange 2010 to Exchange 2016 (Part 2) - TechGenix

 1 COMMENT  SHARE

Copyright © 2018 TechGenix Ltd. | Privacy Policy | Terms & Conditions | Advertise  

SECTIONS  TECH NEWS  TUTORIALS REVIEWS NEWSLETTERS VIDEOS ABOUT  

http://techgenix.com/migrating-small-organization-exchange-2010-exchange-2016-part2/ 14/14

Вам также может понравиться