How do you run a CSVDE query that returns all mailboxes for a given exchange server? thanks ScottM
Have you seen this? http://msexchangetips.blogspot.com/2006/08/exchange-export-gal-using-csvde.html http://www.microsoft.com/technet/prodtechnol/exchange/2003/insider/ldapquery.mspx http://support.microsoft.com/?kbid=255602 Using something like the following for your LDAP query should do it (replace YOURSERVERNAMEHERE with your servername; using ldp to view what that value is stored as (I can't recall if it's fqdn or ?) is a good idea) (&(objectClass=user)(objectCategory=Person)(msExchHomeServerName=YOURSERVERNAMEHERE)) It may even be easier to just pull all information from the gal and include the msExchHomeServerName attribute in your query (you'll see similar in the blog entry above) and you'll be able to then sort in excel from that point. There are many other ways as well, but I think that should get you started. Al "Scott McFadden" wrote in message news:%23qXirIcXHHA.4132@TK2MSFTNGP04.phx.gbl... > How do you run a CSVDE query that returns all mailboxes for a given > exchange server? > > > thanks > > ScottM > >