.Net - DirectoryServices: multivalues properties

  • Thread starter Thread starter Karsten
  • Start date Start date
K

Karsten

Hy,

does anyone know if there is a limitation of max entries for
multivalued properties in active directory classes of .net?

i try to store 10.000 entries in a multivalued unicode string property
with

for (...) {
oEntry.Properties["NameOfPropertry"].Add(...);
oEntry.CommitChanges();
}

and always get an error after aproximately 900 entries.

thanks a lot for help in advance.
 
Multivalued attributes are limited 850 in Windows 2000 AD . In 2003 it has
been lifted to a higher (to me unknown) value.

--
Regards

Matjaz Ladava, MCSE, MCSA, MCT, MVP
Microsoft MVP - Active Directory
(e-mail address removed), (e-mail address removed)
http://ladava.com
 
Back
Top