eSoftTools Exchange EDB to PST Converter Tool

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

eSoftTools Exchange EDB to PST Converter Tool

salinagomes
The easiest method to Export all EDB items to many different file formats such as PST, EML, EMLX, MSG, and HTML is here named eSoftTools Exchange EDB to PST Converter Tool. It effectively recovers all EDB databases from a corrupted EDB file and supports to transfer of it to the desired file format like PST. This tool extremely fixes all issues from an Exchange EDB file makes the file again accessible. Get an instant Demo of this software that freely converts EDB files with selective 25 items from each folder to PST.

Get Know More:- Exchange EDB to PST Recovery

Reply | Threaded
Open this post in threaded view
|

Re: eSoftTools Exchange EDB to PST Converter Tool

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.