export of all the users

  • Thread starter Thread starter srs
  • Start date Start date
S

srs

I was requested for an export of all the users in me Exchange 2000 server. I
was informed that this was done at the AD level. However I do not see an
export function. Could some one point me to the right places.
 
If you only want this info for one Exchange Server you can the homeMDBBL
attributes on all msExchPrivateMDB objects of that server.

You can do this with adfind by doing the following

First find the DN of the Exchange Server in the Exchange Services portion of the
directory:

adfind -config -f name=servername -dn


That will return something like

dn:CN=2K3EXC01,CN=Servers,CN=First Administrative Group,CN=Administrative
Groups,CN=joeware,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=joe,DC=com


You then dump the homeMDBBL attribute for all DB objects under that DN...

(Note this is all one line)

adfind -b "CN=2K3EXC01,CN=Servers,CN=First Administrative
Group,CN=Administrative Groups,CN=joeware,CN=Microsoft
Exchange,CN=Services,CN=Configuration,DC=joe,DC=com" -f
objectcategory=msExchPrivateMDB homeMDBBL

In short form that looks like

adfind -b "Exchange Server DN" -f objectcategory=msExchPrivateMDB homeMDBBL


joe
 
will this export be able to be imported in to a other server. we are working
with a other organisation so much that they would like to import our
addreses and visa versa
 
Nope, that is just telling you the DNs of the users who has mailboxs on that
server. If you want to share like that, you could export all users with a
mailbox (and whatever info you want for them) and then the other company could
import those as contacts. It depends on exactly what users (and if you want
contacts too) and specific attributes you want to export and place into the
foreign system. If you are all on the same network you will be better off
looking at using Identity Integration Feature Pack which is a slimmed down
version of MIIS available here:

http://www.microsoft.com/downloads/...10-c04d-41c4-b7ea-6f56819769d5&DisplayLang=en
 
Back
Top