Removes all information from the department, directReports, and manager attributes of the MyerKen Active Directory user account.
On Error Resume NextConst E_ADS_PROPERTY_NOT_FOUND = &h8000500DConst ADS_PROPERTY_CLEAR = 1Set objUser = GetObject _("LDAP://cn=MyerKen,ou=Management,dc=NA,dc=fabrikam,dc=com")objUser.PutEx ADS_PROPERTY_CLEAR, "department", 0objUser.SetInfoarrDirectReports = objUser.GetEx("directReports")If err.number = E_ADS_PROPERTY_NOT_FOUND ThenWScript.QuitElseFor Each strValue in arrDirectReportsSet objUserSource = GetObject("LDAP://" & strValue)objUserSource.PutEx ADS_PROPERTY_CLEAR, "manager", 0objUserSource.SetInfoNextEnd If
This is a VB Script, this can be used by saving the file in .vbs file