vote up 2 vote down star
1

I am considering writing some Perl scripts that interact with Active Directory. Being somewhat new to Perl, I was wondering if there were any specific modules, tools, techniques, etc. that anyone would suggest I use. As of right now, I am only looking to pull user information to process with the script.

flag

50% accept rate
1  
AD is LDAP. Talk to AD like you would an LDAP server. – jrockway Oct 6 at 23:22

2 Answers

vote up 4 vote down

The best source of Active Directory example code in Perl is available here. It's from Robbie Allen, the co-author of O'Reilly's excellent Active Directory Cookbook.

Here is an example from their cookbook code:

# This Perl code finds all disabled user accounts in a domain.

# ---------------------------------------------------------------
# Adapted from VBScript code contained in the book:
#      "Active Directory Cookbook" by Robbie Allen
# ISBN: 0-596-00466-4
# ---------------------------------------------------------------

# ------ SCRIPT CONFIGURATION ------
my $strDomainDN = "<DomainDN>";    # e.g. dc=rallencorp,dc=com
# ------ END CONFIGURATION ---------
use Win32::OLE;
$Win32::OLE::Warn = 3;
my $strBase   =  "<LDAP://" . $strDomainDN . ">;";
my $strFilter = "(&(objectclass=user)(objectcategory=person)" . 
                "(useraccountcontrol:1.2.840.113556.1.4.803:=2));";
my $strAttrs  = "name;";
my $strScope  = "subtree";

my $objConn = Win32::OLE->CreateObject("ADODB.Connection");
$objConn->{Provider} = "ADsDSOObject";
$objConn->Open;
my $objRS = $objConn->Execute($strBase . $strFilter . $strAttrs . $strScope);
$objRS->MoveFirst;
while (not $objRS->EOF) {
    print $objRS->Fields(0)->Value,"\n";
    $objRS->MoveNext;
}
link|flag
@Mick don't post affiliate links to avoid having your answer flagged as spam. – Sinan Ünür Oct 6 at 15:06
My bad, I didn't realize it was. I just grabbed their Amazon link from their site without thinking. Thanks for fixing! – Mick Oct 6 at 15:14
I get an error ("Table does not exist") using this code. I've tried to replace the $strDomainDN with something I think is right for my company, but it must be wrong. How do you find out the DN? – jimtut Oct 6 at 16:16
Here's a link to a VBScript that will show you your top level DN: visualbasicscript.com/Get-DN-of-Computer-m27103.a… – Mick Oct 6 at 17:06
Just add the following to the end of the vbscript and run: MsgBox sDNSDomain – Mick Oct 6 at 17:07
show 3 more comments
vote up 0 vote down

From what I understand, there are two options:

  • Win32::OLE module
  • Execute external tools (suchs DSQuery, DSGet, etc) and parse the output.

I don't have much experience with Win32::Ole, may be someone else can elaborate on that a bit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.