Thanks in advance for any advice that can be given.
I've had this script working for a number of days to display all of the groups available in our domain server.
-------------------------------
Set Computer = GetObject("WinNT://" & strDomain)
Computer.Filter = Array("Group"
For Each Group in Computer
Response.Write " - " & Group.Name & "<BR>"
Next
-----------------
This was working beautifully until the other day when we had to change a number of security settings on the domain server for an unrelated issue. Now, the same scripts returns no groups or users - only 'Schema' - though going through Active Directory shows them to be there.
I also get an Invalid Pathname (80005000) error if I try to specifically find a user when I know their path. While it seems likely that it is a security issue, I can't figure out what exactly is the source or how to fix it.
The pathname is correct, the script hasn't changed. Thanks for taking your time.
I've had this script working for a number of days to display all of the groups available in our domain server.
-------------------------------
Set Computer = GetObject("WinNT://" & strDomain)
Computer.Filter = Array("Group"
For Each Group in Computer
Response.Write " - " & Group.Name & "<BR>"
Next
-----------------
This was working beautifully until the other day when we had to change a number of security settings on the domain server for an unrelated issue. Now, the same scripts returns no groups or users - only 'Schema' - though going through Active Directory shows them to be there.
I also get an Invalid Pathname (80005000) error if I try to specifically find a user when I know their path. While it seems likely that it is a security issue, I can't figure out what exactly is the source or how to fix it.
The pathname is correct, the script hasn't changed. Thanks for taking your time.