Skip to end of metadata
Go to start of metadata

This article describes how to restore a MS Exchange previously backed up by R1Soft CDP.

Tip
Exchange 2010 no longer includes the concept of storage groups. In earlier versions of Exchange, one or more Exchange store databases can be grouped into a storage group, which can then be managed as a unit. Because storage groups were removed from Exchange Server 2010, a recovery database can be used.

CDP provides the ability to take a snapshot of the Microsoft Exchange. Since CDP is using the VSS Exchange writer, it ensures data integrity and consistency during the backup operation.



1. Using CDP to Restore Database Data and Log Files

In order to restore a database, follow the instructions below.

1. Click on "Recovery Points" in the Main Menu to open the "Recovery Points" window.

Standard Edition Enterprise Edition Advanced Edition

2. In the "Recovery Points" list, from the horizontal menu select the Agent where MS Exchange is installed and the appropriate Disk Safe to restore from.

3. Then select a Recovery Point to restore from and click on the "Browse" icon in the "Actions" column for this Recovery Point.

Tip
To find a Recovery Point, you can use the Basic and Advanced List Filters. See Customizing the Recovery Points List.

4. The "Browse Recovery Point" window opens.

See also: Browsing Recovery Points.

5. Browse to locate the SQL check point file, data and log files (Enn.chk, .mdf & .ldf).

Select the checkboxes next to the files and folders to restore.

6. Once the files and folders are selected, click on "Restore Selected."

7. The "Restore Files" window will open.

8. Select the Agent where the MS Exchange is installed.

Specify to restore the files to an alternate location as we are later going to attach them to an Exchange Recovery Group.

9. Click "Restore."

10. You can view the Restore Task results in the "Task History."

11. In the "Task History" list, find the Task you want to view the summary for and click it. The "Summary" tab located on the bottom area accumulates general information about the task.


2. Using Eseutil to Replay Log Files

Once the files have been restored, it is time to run Eseutil to get the data files into a clean shutdown state so that they can be attached to a recovery storage group, and have the log files played into the backup.

On the Exchange server where the files were restored, open up the command prompt and change the directory to the location where you restored the .chk, .edb, and .ldf files. Operating inside of the directory, where the data and log files exist, eliminates misspelling and incorrect paths, etc.

For example, the files were restored to the c:\test directory, but since the original files were located under

C:\Program Files\Microsoft\Exchange Server\Mailbox\First Storage Group,

The restore directory path will be:

C:\test\Program Files\Microsoft\Exchange Server\Mailbox\First Storage Group.

From this directory run the following command:

Eseutil /R Enn /I /D

For example:

Eseutil /R E00 /I /D


For more information on using Eseutil and the different commands, see the following technet article:

http://technet.microsoft.com/en-us/library/bb123479(EXCHG.80).aspx


3. Restoring a Mailbox Using Exchange Management Shell

1. Find the Exchange server database (.edb) file you have just restored. In our example, we rename this file to "RecoveryDB.edb."

2. Create a folder for log files.

3. Now we are going to launch the Exchange Management Shell to restore the mailbox. Go to Start (All) Programs Microsoft Exchange Server 2010 Exchange Management Shell.

4. The Exchange Management Shell screen will open.

5. Use the New-MailboxDatabase command to create a mailbox database object in the database container in Active Directory. For detailed syntax and parameter information, see http://msdn.microsoft.com/en-us/library/aa997976(v=EXCHG.140).aspx

In our example, we restore the C:\test\RecoveryDB.edb file using the following command:

New-MailboxDatabase -Recovery -Name RecoveryDB -Server XCHG -EdbFilePath C:\test\RecoveryDB.edb -LogFolderPath C:\test\logs

6. Mount the newly created database RecoveryDB using the Mount-Database command. For detailed syntax and parameter information, see http://msdn.microsoft.com/en-us/library/aa998871(v=EXCHG.140).aspx. In our example we use the following command:

Mount-Database "RecoveryDB"

7. Use the Get-MailboxStatistics command to obtain information about a mailbox, such as the size of the mailbox, the number of messages it contains, and the last time it was accessed. For detailed syntax and parameter information, see http://msdn.microsoft.com/en-us/library/bb124612%28ru-ru,EXCHG.140%29.aspx.

8. Extract mailbox content from a restored database using the Restore-Mailbox command. The -RecoveryDatabase parameter specifies the recovery database from which you are restoring the mailbox. In the following example, we restore a "MargeSimpson" mailbox. More parameters for Restore-Mailbox can be found here: http://msdn.microsoft.com/en-us/library/bb125218.aspx

Restore-Mailbox -Identity MargeSimpson -RecoveryDatabase RecoveryDB

9. Confirm your request to recover the mailbox content by clicking "Y."

Are you sure you want to perform this action? Recovering mailbox content from mailbox 'Marge Simpson' in the recovery database 'RDB' to the mailbox for 'Marge Simpson (MargeSimpson@simpson.si)'. This operation may take a long time to complete. [Y] Yes [A] Yes to All [N] No [L] No to All [?] Help (default is "Y"):

More useful commands while restoring a user mailbox

1. To check the database user content, run the following command:

Get-MailboxStatistics –Database "RecoveryDB"

2. To check the state of the database, run the following command:

eseutil /mh '.\Mailbox Database 0091898942.edb'

3. Bulk restore for all mailboxes:

Get-Mailbox -Database "SourceDB" | Restore-Mailbox -RecoveryDatabase "RecoveryDB"

This command restores all mailboxes in the mailbox database SourceDB that are also present in the recovery database RecoveryDB.

Labels:
enterprise_edition enterprise_edition Delete
recovery_points recovery_points Delete
restore restore Delete
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.