I pasted this script into a .vbs file and ran it our domain controller (with our username, ou, and domain info):
Set objUser = GetObject _
("LDAP://cn=Ken Myer,ou=Finance,dc=fabrikam,dc=com")
objUser.Put "userWorkstations", "atl-ws-01,atl-ws-02,atl-ws-03"
objUser.SetInfo
And receive the error:
No such user object on the server.
However, I've double checked the username, ou, and domain several times. Any idea what's wrong?