Re: [DOTNET] Extending Active Directory Schema with .NET

2002-04-22 Thread Ray Heath
Corection: // add “Sky Color = green” should throw an exception with // ex.message = green is not a valid color value for the // Sky Color attribute. deUserColorNode.Properties[“Sky Color”].Add(“blue”); The last line should read: deUserColorNode.Properties[“Sky Color”].Add(“green”); - Ray O

[DOTNET] Extending Active Directory Schema with .NET

2002-04-22 Thread Ray Heath
I would like to modify the Active Directory schema. Does anyone know of effective sample code or instruction to accomplish this with .NET? Basically, I need to do two things: 1. Create custom properties (or modify the existing custom properties already defined) on the ‘user’ schema and elsewhere