Moving mail box
5 pts.
0
Q:
Moving mail box
How can i move mailbox from one forest to another in exchange server 2007
ASKED: Mar 31 2008  12:15 AM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
615 pts.
0
A:
 RATE THIS ANSWER
0
Click to Vote:
  •   0
  •  0
  • AddThis Social Bookmark Button
Mailboxes can be moved across forests using the Move-Mailbox command.

$sourceCredential = Get-Credential

$TargetCredential = Get-Credential

Move-Mailbox "John Doe" -TargetDatabase "Target Server\Target Storage Group\Target Database" -GlobalCatalog DC1.TargetDomain.com -NTAccountOU "OU=MyOUInTargetForest,DC=TargetDomain,DC=com" -SourceForestCredential $SourceCredential -TargetForestCredential $TargetCredential


More details:
How to Move a Mailbox Across Forests
http://technet.microsoft.com/en-us/library/aa997145(EXCHG.80).aspx

Move-Mailbox
http://technet.microsoft.com/en-us/library/aa997599.aspx
Last Answered: Apr 23 2008  11:22 AM GMT by Bsuneja   615 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0