I'm attempting to utilize vbscript to connect pull the physicalDeliveryOfficeName attribute in active directory by providing the email address.
I know how to do it with a common name like the following:
Set MyUser = GetObject ("LDAP://cn=" & uname & ",ou=" & strname & ",DC=bobdom,DC=net")
however only the email address is available. Does anyone know how to do this? I've even tried
Set MyUser = GetObject ("LDAP://mail=" & uname & ",ou=" & strname & ",DC=bobdom,DC=net")
and that doesn't work.
thanks in advance.
