A trivial addition to the ISG::Win32::ActiveDirectory module of Tobias Oetiker & David Schweikert at the Swiss Polytechnic Institute. It adds a method to return an object handle instead of a distinguished name, for those times when you're going to work with everything in an OU, you don't care what the name is, and you don't want to bind to them twice.

Not tested with the 23 March 2007 update, but should work anyway.

sub AD_enumerate_O ($$) { my $dn = shift; my $type = shift; $dn =~ s|^(LDAP://)?|LDAP://|; disable_ole_warnings; my $ou_hand = Win32::OLE->GetObject("$dn"); # this does not seem to work # $ou_hand->{Filter} = [ $type ]; enable_ole_warnings; if (not $ou_hand) { carp "WARNING: ".Win32::OLE::LastError."\n"; return undef; } my @list; foreach my $hand ( in $ou_hand ){ # other interesting properties are: # http://msdn.microsoft.com/library/en-us/netdir/adsi/iads.asp # also works for the 'other' properties of the entry next unless $hand->{Class} eq $type; #simpler than filter push @list, $hand; }; return [ @list ]; }

In reply to Active Directory Object Handles by girarde

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.