Exchange Server Recovery Software

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Exchange Server Recovery Software

carry
eSoftTools Exchange Server Recovery Software is a free solution for effortlessly recovering all of the deleted Exchange Mailbox objects and exporting the Exchange EDB File to PST. Users will be able to recover and migrate data from any damaged EDB file to a variety of file formats, including PST, EML, EMLX, ICS, vCard, MSG, and HTML. The program comes with a free trial version that allows you to save 25 emails per folder.

Get Know More:- Export EDB to PST files



Reply | Threaded
Open this post in threaded view
|

Re: Exchange Server Recovery Software

Akshay_M
Exchange Management Shell provides a command line interface to access the database, get its status, and make the required changes in them.

To convert free EDB to PST file, use the following commands in a sequential manner

Run the command to get the list of mailboxes in a database.
Get-MailboxStatistics -Database <DatabaseName>
The command will enlist all the mailboxes present in the database.

Run the command to export the EDB file to a PST.
New-MailboxExportRequest -Mailbox <MailboxName> -FilePath \\ExchangeBackup\PST\MailboxName.PST
The command will save the mailbox data to a new PST file. But make sure that the destination folder is a shared folder.

Run the command to check the status of mailbox export request.
Get-MailboxExportRequest
It will provide the status of the export request.

After completing the export process, cancel the export request by the following command.
Remove-MailboxExportRequest -Identity <Name of the export request>
Using this process, you can export the data from a single mailbox.