Export of Global Address List E2K

2003-07-31 Thread Kevin Dietz
I am trying to export a list of all my users that have an active mailbox
that is visable with the GAL. Is there a tool or resource that could
assist.

_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface: 
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=lang=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]


RE: Export of Global Address List E2K

2003-07-31 Thread Ed Crowley
I believe LDIFDE can do that.

Ed Crowley MCSE+Internet MVP
Freelance E-Mail Philosopher
Protecting the world from PSTs and Bricked Backups!T

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin Dietz
Sent: Thursday, July 31, 2003 9:39 AM
To: Exchange Discussions
Subject: Export of Global Address List E2K

I am trying to export a list of all my users that have an active mailbox
that is visable with the GAL. Is there a tool or resource that could assist.

_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface:
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=lang
=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]


_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface: 
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=lang=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]


RE: Export of Global Address List E2K

2003-07-31 Thread Lalor, Kevin
You may also want to check out Imanami's Directory Transformation
Manager (DTM).  www.imanami.com

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ed Crowley
Sent: Thursday, July 31, 2003 9:44 AM
To: Exchange Discussions
Subject: RE: Export of Global Address List E2K


I believe LDIFDE can do that.

Ed Crowley MCSE+Internet MVP
Freelance E-Mail Philosopher
Protecting the world from PSTs and Bricked Backups!T

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin Dietz
Sent: Thursday, July 31, 2003 9:39 AM
To: Exchange Discussions
Subject: Export of Global Address List E2K

I am trying to export a list of all my users that have an active mailbox
that is visable with the GAL. Is there a tool or resource that could
assist.

_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface:
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=;
lang
=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]


_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface:
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=;
lang=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]

_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface: 
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=lang=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]


Re: Export of Global Address List E2K

2003-07-31 Thread Steve
You can copy the LDAP query that is used to generate the global address
list (assuming you are talking about the default) it is:

( (mailnickname=*) (|
((objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))((objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*)))((objectCategory=person)(objectClass=contact))(objectCategory=group)(objectCategory=publicFolder)
 ))

Just use this query with a command line LDAP tool like LDIFDE.  It would
go something like this:

ldifde.exe -s yourADservername -d dc=yourdomain,dc=com -r (
(mailnickname=*) (|
((objectCategory=person)(objectClass=user)(!(homeMDB=*))(!(msExchHomeServerName=*)))((objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*)))((objectCategory=person)(objectClass=contact))(objectCategory=group)(objectCategory=publicFolder)
 )) -f output.ldf -l displayname

This would query your AD server for all entries that would be in the GAL
and dump the returned objects DN and their displayname.

Enjoy,

Steve


 I am trying to export a list of all my users that have an active mailbox
 that is visable with the GAL. Is there a tool or resource that could
 assist.

_
List posting FAQ:   http://www.swinc.com/resource/exch_faq.htm
Web Interface: 
http://intm-dl.sparklist.com/cgi-bin/lyris.pl?enter=exchangetext_mode=lang=english
To unsubscribe: mailto:[EMAIL PROTECTED]
Exchange List admin:[EMAIL PROTECTED]