Extract List of User Mailbox Data using vbScript
If you need to export a list of user mailboxes (because your boss is making you or you simply have nothing better to do), it is quite an easy task if you have Exchange 2007 and up because of PowerShell snapins.
You can just fire up PowerShell and import the Exchange 2010 Module.
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
Then:
Get-Mailbox...
List All Users LDAP Query with Attributes
If you need to extract a list of users from the Active Directory, with customizable list of attributes, here's one for you.
'==========================================================================' NAME: ListAllusers.vbs'' AUTHOR: june.castillote@gmail.com' DATE : 03/18/2011'' COMMENT: This is for extracting the list of users with their attribute...