Listing 3: Code to Remove Associated Auxiliary Class from the User Class WScript.Echo "Removing new auxiliary class from user " & _ "Class object: 'cn=user'." Set objUserClass = objSchema.GetObject ("classSchema", _ "cn=user") ' Manipulate the value as a multivalue entry, ' or you'll delete the other auxiliary classes for the user class. objUserClass.PutEx ADS_PROPERTY_DELETE, "auxiliaryClass", _ Array (cLDAPClassName) objUserClass.SetInfo