O365 migration

Sree 1 Reputation point
2020-11-05T17:31:53.667+00:00

Can someone help me with few queries regarding O365.

  1. How do I export and import distribution list from one tenant to a another tenent
  2. How do I export online archive mailbox and shared mailbox
  3. While exporting the the mailboxes into pst, Will it also have users calender and contacts.

Kindly give me the answer for this.

Office Management
Office Management
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Management: The act or process of organizing, handling, directing or controlling something.
2,274 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,788 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Joyce Shen - MSFT 16,686 Reputation points
    2020-11-06T02:22:25.127+00:00

    Hi @Sree

    1.How do I export and import distribution list from one tenant to a another tenent

    A similar thread provided detailed steps here: How do I export Office365 distribution groups and import it to another office365 Tenant

    Get-DistributionGroup -RecipientTypeDetails MailUniversalDistributionGroup | Export-Csv -Path “C:\Users\Administrator\Desktop\Example01.csv"  
    Import-Csv -Path "C:\Users\Administrator\Desktop\Example01.csv" | ForEach-Object {New-DistributionGroup -Name $_.Name  -DisplayName $_.DisplayName -Alias $_.Alias}  
    

    2.How do I export online archive mailbox and shared mailbox

    How to export Exchange Online archive mailbox? and detailed steps to Export Office 365 Shared Mailbox to PST For Backup Purpose
    Using Office 365 Compliance center and export to PST or export items manually from Outlook

    3.While exporting the the mailboxes into pst, Will it also have users calender and contacts.

    Yes it will, you could still use the methods above in compliance center or in outlook to export your mailboxes to PST include calendar and contacts.

    Export O365 Mailboxes to PST


    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
     


  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.