This is a response from ASH at stackoverflow:
There are so many ways to do this!!
This is and old post from Remko Weijnen with some comde to get information from Active Directory.
I had to lookup some users in Active Directory today which I received by mail. Offcourse I got full users name while I needed either samAccountName or full adsPath. Usually I write a small VBS script to do the lookup and paste this in Excel for further processing. But today I decided that an Excel function to do the lookup would be nice. So I wrote it.
The function is called GetAdsProp and allows you to search on a specific AD field in the whole AD tree and return the value of another field.
| Sub Uppercase() |
| RowsCount = Selection.Rows.Count |
| ColumnsCount = Selection.Columns.Count |
| if RowsCount = 0 or ColumnsCount=0 then |
| MsgBox "ERROR: Please select a range or cell" |