Monday, December 1, 2008

Changing the Manager of an OU

Assigns the user account AkersKim as manager of the Sales OU in Active Directory.

Set objContainer = GetObject _
  ("LDAP://ou=Sales,dc=NA,dc=fabrikam,dc=com")
 
objContainer.Put "managedBy", "cn=AkersKim,ou=Sales,dc=NA,dc=fabrikam,dc=com"
objContainer.SetInfo

This is a VB Script, this can be used by saving the file in .vbs file