I want to search a specific user (e.g. Clinton, Bill) in the GAL and get all the information like e-mail address, phone, street etc. in Excel.
How do I do that in VBA?
I want to search a specific user (e.g. Clinton, Bill) in the GAL and get all the information like e-mail address, phone, street etc. in Excel.
How do I do that in VBA?
Copyright © 2021 Jogjafile Inc.
Call
Application.Session.CreateRecipientpassing the name as a string, then callRecipient.Resolveon the returnedRecipientobject. Use theRecipient.AddressEntryproperty (e.g. you can callAddressEntry.GetExchangeUser).