Link to home
Start Free TrialLog in
Avatar of ITAS01
ITAS01

asked on

Migrate exchange 2003 mailboxes to Exchange 2010 (SBS 2011)

OK there are plent of article when migrating exchange 2003 -2010 when in the same domain or network. However, the old exchange 2003 is at another location and I have built the new SBS 2011 (exchange 2010) from scratch. I need to get users mailbox data from old server to new server what is the best way? Am I just best to export mailbox to PST files then bring them into new server that way?

Cheers
Damien
ASKER CERTIFIED SOLUTION
Avatar of M A
M A
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
Here is the command to import multiple PSTs

Dir \\EX02\PSTFiles\*.pst | %{ New-MailboxImportRequest -Name PSTImport -BatchName Imports -Mailbox $_.BaseName -FilePath $_.FullName }


http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/look-import-export-mailbox-improvements-exchange-2010-service-pack-1-part2.html
Here is a tool to export and import but it is not free, it will charge you a few bucks
http://www.clickzones.net/index.php?option=com_content&view=article&id=65&Itemid=69
Avatar of ITAS01
ITAS01

ASKER

Thanks for the info.