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)

Scripting >> Perl >> ADSI >> How to filter objects in a container

1. example to filter users only and not group in the Users OU $oOU = Win32::OLE->GetObject("LDAP://OU=Users,DC=somedomain,DC=com"); $oOU->{Filter} = ["user"]; foreach $oUser (in $oOU) { print $oUser->{Name}; }
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]