September 2003
Intermediate to advanced
624 pages
15h 49m
English
You want to enumerate all containers and OUs in a domain, which effectively displays the structure of the domain.
Open the Active Directory Users and Computers snap-in.
If you need to change domains, right-click on “Active Directory Users and Computers” in the left pane, select Connect to Domain, enter the domain name, and click OK.
In the left pane, you can browse the directory structure.
The following command will enumerate all OUs in the domain of the user running the command.
> dsquery ou domainroot
' This code recursively displays all container and organizationalUnit
' objects under a specified base. Using "" for the second parameter means
' that there will be no indention for the first level of objects displayed.
DisplayObjects "LDAP://<DomainDN>", ""
' DisplayObjects takes the ADsPath of the object to display
' child objects for and the number of spaces (indention) to
' use when printing the first parameter
Function DisplayObjects( strADsPath, strSpace)
set objObject = GetObject(strADsPath)
Wscript.Echo strSpace & strADsPath
objObject.Filter = Array("container","organizationalUnit")
for each objChildObject in objObject
DisplayObjects objChildObject.ADsPath, strSpace & " "
next
End FunctionIf you want to expand all containers and OUs within an OU, you have to manually expand each one within ADUC; there is no ...