As a Initial Process Please Follow
Cross Forest Migration Guide – Exchange 2010 to Exchange 2010
Lets see how to Move Mailboxes in Bulk in Cross forest scenario
Taking the Dump is always the same way , Whatever the version your migrating to
I have collected the my users in the same OU so that I can take the Dump easily
my OU (Organizational Unit) Name is “SourceUsers”

I need the Distinguish name of my OU (Organizational Unit)
View->Advance Features

Right Click – Properties of your OU (Organizational Unit) – Attribute Editor
Get the Value of “Distinguished Name”
In my case its “OU=SourceUsers,DC=CareExchange,DC=in”

Open Command prompt
Run
csvde -d “OU=SourceUsers,DC=CareExchange,DC=in” -f c:\SourceUserDump.csv -r (objectclass=user) –l mail

Now it Collected the 5 Mailboxes available
Now your Notepad will look like this

Remove the first Column – Use Excel or Use Notepad – Its up to you –
Note – First Line contains the title – Identity
Now it should look like below

To Verify Run Import-Csv “SourceUserdump.csv”

Now you can Import the CSV Pipe it to the Script as Below
Import-Csv “SourceUserdump.csv” | .\Prepare-MoveRequest.Ps1 -RemoteForestDomainController “FQDN of Source DC” -RemoteForestCredential $RemoteCredentials -LocalForestDomainController “FQDN of Target Forest DC” -LocalForestCredential $LocalCredentials -TargetMailUserOU “Distinguished name of OU in TargetForest” –UseLocalObject
If your doing for many objects , Its going to run fast and Errors won’t get saved
I would recommend to run Start-Transcript C:\MoveDump.txt
So that you have the right data in hand
To stop the Transcript – Stop-Transcript

Now you got your disable accounts Created

Now move the Users using ADMT migrating with SIDs
How to Migrate Users Across forest (Cross Forest) using ADMT 3.2 with sid and Passwords

Now accounts are activated with SID

Now Moving the mailbox using Remote Move
Import-Csv “SourceUserdump.csv” |New-MoveRequest –Remote –Remotehostname ‘sourceExchange.CareExchange.in’ -RemoteCredential $RemoteCredentials –TargetDeliverydomain ‘targetexchange.in


Now you won’t be able to logon on the new forest directly as you required to change password as first logon
To avoid that situation
see
How to Disable “User must change password at next logon” after cross forest move using ADMT 3.2
Great !!
you Learnt how to Move in Bulk in Cross forest Scenario
Regards
Satheshwaran Manoharan