Post date: Nov 10, 2014 9:10:31 AM
Use the Shell to move user mailboxes to a recovered or dial tone database using database portability
Verify that the database to be moved is in a clean shutdown state. If the database isn't in a clean shutdown state, perform a soft recovery.
Note:
When you perform a soft recovery, any uncommitted log files are committed to the database. If you don't have all of the required log files, you can't complete the soft recovery process. Proceed to step 2.
To commit all uncommitted log files to the database, from a command prompt, run the following command.
ESEUTIL /R <Enn>
Note:
<Enn> specifies the log file prefix for the database into which you intend to replay the log files. The log file prefix specified by <Enn> is a required parameter for Eseutil /r.
Create a database on a server using the following syntax:
New-MailboxDatabase -Name <DatabaseName> -Server <ServerName> -EdbFilePath <DatabaseFileNameandPath> -LogFolderPath <LogFilesPath>
Set the This database can be over written by restore attribute using the following syntax:
Set-MailboxDatabase <DatabaseName> -AllowFileRestore $true
Move the original database files (.edb file, log files, and Exchange Search catalog) to the database folder you specified when you created the new database above.
Mount the database using the following syntax:
Mount-Database <DatabaseName>
After the database is mounted, modify the user account settings with the Set-Mailbox cmdlet so that the account points to the mailbox on the new mailbox server. To move all of the users from the old database to the new database, use the following syntax.
Get-Mailbox -Database <SourceDatabase> |where {$_.ObjectClass -NotMatch '(SystemAttendantMailbox|ExOleDbSystemMailbox)'}| Set-Mailbox -Database <TargetDatabase>
Trigger delivery of any messages remaining in queues using the following syntax.
Get-Queue <QueueName> | Retry-Queue -Resubmit $true
After Active Directory replication is complete, all users can access their mailboxes on the new Exchange server. Most clients are redirected via Autodiscover. Microsoft Office Outlook Web App users are also automatically redirected.
To verify that you've successfully moved a mailbox, do the following:
Open the mailbox using Outlook Web App.
Open the mailbox using Microsoft Outlook.