Link to home
Start Free TrialLog in
Avatar of Jorge Ocampo
Jorge OcampoFlag for United States of America

asked on

how to import email from another exchange 2007 to 2010 different domains same user

My company just purchase another company and it is taken all employees into our environment but users need ingestion of there emails from there previous email to the new email.

how would i do this?

PST Ingestion i would imagine
Avatar of Joshua Grantom
Joshua Grantom
Flag of United States of America image

Yes, you can use powershell to export all of the old mailboxes to pst

http://blogs.technet.com/b/exchange/archive/2007/04/13/3401913.aspx

If you have the space and enough room, you can do this for everyone at once

$users = Get-ADUser -filter* | Select SamAccountName
foreach ($user in $users)
{
Export-Mailbox –Identity $User -PSTFolderPath "C:\PST's\$User Mailbox.pst"
}

Open in new window


or if you want to use a .txt list.

$users = Get-Contents "C:\users.txt"
foreach ($user in $users)
{
Export-Mailbox –Identity $User -PSTFolderPath "C:\PST's\$User Mailbox.pst"
}

Open in new window


or by group

$users = Get-ADGroupMember -identity "Group Name" | Select SamAccountName
foreach ($user in $users)
{
Export-Mailbox –Identity $User -PSTFolderPath "C:\PST's\$User Mailbox.pst"
}

Open in new window

Avatar of Jorge Ocampo

ASKER

so the idea is to export pst and then import pst to specify users?
ASKER CERTIFIED SOLUTION
Avatar of Joshua Grantom
Joshua Grantom
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Have the users been created in the new forest/domain already? Any forest trust between the two companies? You could also look at a Cross Forest Migration as well.