Scene
By creating a new local move request, it is convenient to migrate a user's mailbox from one database to another.
1) Cross-platform mail migration; (Low exchange migration to high-version exchange)
2) database balance and optimization; (In the Enterprise, the database planning is unreasonable)
3) In the case of a damaged item in the mailbox, you can move the mailbox by ignoring the corrupted item and migrating the mailbox;
Method
1) via graphical interface
Select recipients, switch to the Migration tab, and create a new migration batch.
Select "Move to a different database".
Select the user you want to move.
If you have more users, you can also move from CSV to bulk.
Give the migration batch a name, and then select the type of mailbox to move, the destination database address, the error entry limit, and so on.
2) the way through PowerShell
--------------------------Example 1--------------------------
This example uses the WHATIF switch to test the readiness of the mailbox to move to a new database in the same forest DB01 and the completion of the command. When you use the WHATIF switch, the system checks the mailbox and you receive an error if the mailbox is not ready.
New-moverequest-identity ' [email protected] '-targetdatabase ' DB01 '-whatif
--------------------------Example 2--------------------------
This example moves Tony Smith's mailbox to the new database DB01.
New-moverequest-identity ' [email protected] '-targetdatabase ' DB01 '
--------------------------Example 3--------------------------
This example creates a batch move request for all mailboxes in database DB01 and uses the Batchname parameter value db01todb02 to move them to the database DB02.
Get-mailbox-database DB01 | New-moverequest-targetdatabase db02-batchname "DB01TODB02"
Skip Error entry
New-moverequest-identity zengchuixin1-targetdatabase "DB01"-baditemlimit 1000-acceptlargedataloss-batchname Movemailbox-whatif
For more It information, you can also follow the public number below:
Zeng Hung Xin's online classroom, has hung Xin da Lecture hall-51CTO College
Http://edu.51cto.com/lecturer/639838.html
Exchange Server 2016 Management Series Courseware 39. Create a new local move request