Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> OS >> Windows >> API >> ADSI >> How to list the OUs under a given active directory container

assume target container is LDAP://DC=somecollege,DC=edu To list OUs under it using vbscript :- Set oOUs = GetObject ("LDAP://DC=somecollege,DC=edu") oOUs.Filter = Array("organizationalUnit") For each oOU in oOUs wscript.echo oOU.Name Wscript.echo oOU.Class Next
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]