How to export mail id from old pst

There are a few ways to export email addresses from an old PST file:

Method 1: Using Microsoft Outlook

  1. Open Microsoft Outlook and go to the "File" menu.
  2. Click on "Open & Export" and then select "Import/Export".
  3. Choose "Export to a file" and select "Comma Separated Values (CSV)" as the file format.
  4. Select the PST file you want to export from and click "Next".
  5. Choose the folder you want to export (e.g. "Inbox", "Contacts", etc.) and click "Finish".
  6. The email addresses will be exported to a CSV file.

Method 2: Using a third-party tool

There are several third-party tools available that can help you export email addresses from a PST file. Here are a few options:

  1. PST Extractor: This tool can extract email addresses, contacts, and other data from PST files. You can download a free trial version from the official website.
  2. PST Viewer: This tool allows you to view and export data from PST files, including email addresses. You can download a free trial version from the official website.
  3. EML to PST Converter: This tool can convert PST files to EML files, which can then be exported to a CSV file. You can download a free trial version from the official website.

Method 3: Using PowerShell

If you have PowerShell installed on your system, you can use the following command to export email addresses from a PST file:

  1. Open PowerShell and navigate to the directory where your PST file is located.
  2. Run the following command: Get-MailboxExport -Path <PST_file_name> -ExportFormat CSV
  3. Replace <PST_file_name> with the actual name of your PST file.
  4. The email addresses will be exported to a CSV file.

Method 4: Using a script

You can also use a script to export email addresses from a PST file. Here is an example of a PowerShell script that you can use:

  1. Open PowerShell and create a new script file (e.g. export-emails.ps1).
  2. Add the following code to the script file:
    
    $PST_file_name = "path/to/your/pst/file.pst"
    $export_file_name = "path/to/export/file.csv"

Get-MailboxExport -Path $PST_file_name -ExportFormat CSV | Export-Csv -Path $export_file_name


3. Replace `path/to/your/pst/file.pst` with the actual path to your PST file, and `path/to/export/file.csv` with the actual path where you want to export the email addresses.
4. Run the script by typing `.\export-emails.ps1` in PowerShell.

I hope these methods help you export email addresses from your old PST file!