My domain is Win2003-based domain in Win2000 mixed mode.
I run a script as following to disable the dial-in property of a user account
Set objUser = GetObject("LDAP://cn=username,ou=Test,dc=company,dc=com")
objUser.Put "msNPAllowDialin", False
objUser.SetInfo
objUser.GetInfo
Wscript.echo objUser.Get("msNPAllowDialin")
I can see that the value of msNPAllowDialin has been modified,but there is no change in the Remote Access Permission section of the dial-in tab in the user's properties in AD users and computers console,which is like that addressed in KB252398
(http://support.microsoft.com/kb/252398/en-us)
I found a page about adsi downloading,but the link in it is not available.
(http://www.microsoft.com/technet/archive/winntas/downloads/adsi25.mspx?mfr=true )
I want to know how to get the ADSI25 installing file? How to modify the the dial-in property of a user account in a mixed mode domain.
Thanks!