List of attributes

Hi,
How can obtain the complete list of attributes for a specific objectclass ?
[88 byte] By [developer-network] at [2007-11-17 14:26:38]
# 1 Re: List of attributes
They are detailed in the Platform SDK for Windows 2000 do a search for the object class you want, one of the specific links will guide you there. For Example if you are looking for the User Object attribute list, You would search for "LDAP User Object" and it will pull up a page of the attributes.

Hope it helps,
-Erik
Radracr at 2007-11-10 3:39:20 >
# 2 Re: List of attributes
Good answer Rad, but an even better way would be to install ADSIEdit, which you can get from the Windows 2000 Resource Kit. This lets you browse the entire directory, including the schema container.
racter at 2007-11-10 3:40:27 >
# 3 Re: List of attributes
In case you need to know how to get and user ADSIEdit, here are some instructions:

ADSIEdit is not one of the default snap-ins that is available to be added to an MMC console. To add ADSIEdit to the list of available snap-ins, copy the Adsiedit.dll file from the \Support folder on the Windows 2000 Server Resource Kit CD to your %systemroot%\System32 folder. Then on the Start menu, click Run. Type regsvr32 adsiedit.dll, and then click OK.
Rick Leinecker at 2007-11-10 3:41:25 >
# 4 Re: List of attributes
ADSI PROPERTY ( http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/provider_support_of_adsi_interfaces.asp)
Furtif_00 at 2007-11-10 3:42:22 >
# 5 Re: List of attributes
It looks like you are doing alot of ADSI development - here are a couple of links that may be helpful.

ADSI homepage:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/active_directory_service_interfaces_adsi.asp

Here is a some source that does user management using ADSI.
http://www.codeproject.com/w2k/adsiuserdmo.asp

This is a decent book on ADSI programming:
Microsoft Windows 2000 Active Directory Programming
by Charles Oppermann

There is another one, which I think is even better, which was published by Sams. I can't think of the name, but it is on my desk at work - I will add it later.

Now==Later...
"Active Directory Programming" by Gil Kirkpatrick
f1shrman at 2007-11-10 3:43:32 >