Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
I downloaded this code last year - can't remember where I got it, and I haven't used it but this may accomplish what you want:
use strict; use Net::LDAP; #-----------------------------------------------# # Customize for your own environment, # connect and authenticate #-----------------------------------------------# my $dc = 'dc1'; my $user = 'administrator@mycorp.com'; my $passwd = 'Adminpasswd'; my $dn = "cn=jdoe,cn=users,dc=mycorp,dc=com"; my $ldap = Net::LDAP->new($dc) or die "$@\n"; my $rc = $ldap->bind( $user, password => $passwd); die $rc->error if $rc->code; #----------------------------------------------# # Modify several attributes #---------------------------------------------# print "Setting givenname, sn and mail...\n"; $rc = $ldap->modify($dn, changes => [ add => [ givenname => "Johnny" ], add => [ sn => "Doh"], add => [ mail => 'jdoe@mycorp.com'], ]); die $rc->error if $rc->code; print "Changing givenname to John...\n"; $rc = $ldap->modify($dn, replace => { givenname => "John" }); die $rc->error if $rc->code; print "Deleting the mail attribute...\n"; $rc = $ldap->modify($dn, delete => [ 'mail' ]); die $rc->error if $rc->code; print "Setting the telephoneNumber and sn...\n"; $rc = $ldap->modify($dn, changes => [ add => [ telephoneNumber => '555-123-456 +7'], replace => [ sn => 'Doe'], ]); die $rc->error if $rc->code; print "\nModifications successful\n"; $ldap->unbind;

     "There are only two truly infinite things. The universe and stupidity, and I'm not too sure about the universe"- Albert Einstein


In reply to Re: convert VBscript to Perl by NetWallah
in thread convert VBscript to Perl by softworkz

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-24 20:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found