Contact Info

Crumbtrail

ActiveXperts.com » Administration » Scripts » Adsi

List the Names of All Objects in the Configuration Container in Windows

You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.

List the Names of All Objects in the Configuration Container in Windows using VBScript, WMI and LDAP

Example(s)

Set objConfiguration = GetObject _
    ("LDAP://cn=Configuration,dc=fabrikam,dc=com")
 
For Each objContainer in objConfiguration
    WScript.Echo objContainer.Name
Next