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