I have written a script that will change a password from the sources in
MS Scripts resource. This is the actual code:
strUserDN = "cn=testusera,ou=Admins,dc=testdc01,dc=domain,dc=com"
strNewPasswd = "pass123456"
'Set objUser = GetObject("LDAP://" & strUserDN)
objUser.SetPassword(strNewPasswd)
however when I run it, the following error occurs " A referral was
returned from the server."
I read some posts from here and it said add the DC's name to the UserDN
path testdc01, however it still doesn't work. The original script did't
have that and it still gave the same error........
Any on please help....