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 LDAPExample(s)
Set objConfiguration = GetObject _ ("LDAP://cn=Configuration,dc=fabrikam,dc=com") For Each objContainer in objConfiguration WScript.Echo objContainer.Name Next