我怎样才能从Perl的Active Directory的工作?工作、Perl、Active、Directory

由网友(骚年霸称帝王)分享简介:我正在考虑写一个与Active Directory进行交互的一些Perl脚本。作为有些新的Perl,我想知道是否有任何具体的模块,工具,技术等,任何人都建议我使用。截至目前,我只希望拉动用户信息来处理的脚本。I am considering writing some Perl scripts that interac...

我正在考虑写一个与Active Directory进行交互的一些Perl脚本。作为有些新的Perl,我想知道是否有任何具体的模块,工具,技术等,任何人都建议我使用。截至目前,我只希望拉动用户信息来处理的脚本。

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.

推荐答案

Active Directory的例如code在Perl可以在这里找到。这是从罗比·艾伦的合着者O'Reilly的优秀 Active Directory的食谱。

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.

下面是一个例子的从他们的食谱code:

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;
}
阅读全文

相关推荐

最新文章