A) There is no AD forum that I could find
B) This issue would have most likely been experienced by someone working with AD user objects programmatically.
I have a user that is a member of groups A, B, and C. However, the code I use to pull this information from AD only returns memberships of A and B. Additionally, this code has been run hundreds of thousands of times over the past 5 years as it is part of our login script so I know it's solid.
I hope, for everyone's sake, that no one has experienced this. However, I hope, for my sake, that someone has experienced and resolved this issue
here is the code I run
Does anyone know why this might happen?
-Geates
"I hope I can chill and see the change - stop the bleed inside and feel again. Cut the chain of lies you've been feeding my veins; I've got nothing to say to you!"
-Infected Mushroom
"I do not offer answers, only considerations."
- Geates's Disclaimer
B) This issue would have most likely been experienced by someone working with AD user objects programmatically.
I have a user that is a member of groups A, B, and C. However, the code I use to pull this information from AD only returns memberships of A and B. Additionally, this code has been run hundreds of thousands of times over the past 5 years as it is part of our login script so I know it's solid.
I hope, for everyone's sake, that no one has experienced this. However, I hope, for my sake, that someone has experienced and resolved this issue
here is the code I run
Code:
set objSysinfo = CreateObject("ADSystemInfo")
set objUser = GetObject("LDAP://" & objSysinfo.UserName & "")
for each objGroup in objUser.Groups
msgbox objGroup.CN
next
Does anyone know why this might happen?
-Geates
"I hope I can chill and see the change - stop the bleed inside and feel again. Cut the chain of lies you've been feeding my veins; I've got nothing to say to you!"
-Infected Mushroom
"I do not offer answers, only considerations."
- Geates's Disclaimer