Share via


Getting Linked Mailboxes after migrating from E2K3 to E2K7?

This issue can occur if the associated external account was set on the user's Microsoft Exchange Server 2003 or Exchange 2000 Server mailbox.
The idea here it to modify msExchRecipientTypeDetails attribute (you can do it with ADSI Edit) but here we will do it using VBScript:

NOTE: Following programming examples is for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties
of merchantability and/or fitness for a particular purpose. This sample code assumes that you are familiar with the programming language being demonstrated and
the tools used to create and debug procedures. This sample code is provided for the purpose of illustration only and is not intended to be used in a production environment.

=============

Dim obj
'ToDo: Modifiy the UserAlias, Domain, DomainExtn
Set obj =
GetObject("LDAP://CN=UserAlias,CN=Users,DC=Domain,DC=DomainExtn")
obj.msExchRecipientTypeDetails = 1
obj.SetInfo()
Set obj = nothing

=============