AD User Info Dump

Anything VBScript-related, including Windows Script Host, WMI, ADSI, and more.
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 16 years and 8 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
EldarDragon
Posts: 1
Last visit: Mon Nov 09, 2009 9:35 am

AD User Info Dump

Post by EldarDragon »

Hi

I started to write
a script to add a new user to AD. I found several examples, but they only
filled a few basic fields. I wanted to do more, but I could not find the names
of the properties of the user object. So then I tried to find something that
would dump all the properties names and values. All I could find is scripts
that would list selected properties from the different tabs of the GUI not all.
So I have 2 questions.


1. Is there some place that documents all the properties of
the user object? I have found bits and pieces but never a complete description.


2. How would I create a script that could dump all the properties
and the value stored there? Something like the example listed below(which does
not work).

Code: Select all


	On Error Resume Next

	Set objUser = GetObject _ 

	      ("LDAP://cn=Some
	User,ou=Users,dc=MyDomain,dc=local")

	objUser.getinfo

	WScript.Echo "All Data:"

	For Each strValue in objUser

	    WScript.echo strValue.name & vbTab & strValue

	Next

	





Thanks

Randy
This topic is 16 years and 8 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked