There are two easy ways to do this. Method number one is a batch file.
# assume $rs is recordset of usernames and passwords open(BAT,">nt.bat"); while(!$rs->EOF) { print BAT "net user " . $rs->Fields("username")->value . " " . $rs +->Fields("password")->value . "\n"; } close(BAT); system("nt.bat");
Or, you can use Roth's Win32::AdminMisc module. In that case:
# assume $rs is recordset of usernames and passwords while(!$rs->EOF) { Win32::AdminMisc::SetPassword('DomainServer', $rs->Fields("usernam +e")->value,$rs->Fields("password")->value); }
Not putting them into the DB via cleartext would be a bit harder. How are they getting into the DB? If it is over a web-page, use SSL to put them in the DB. However, going from the DB to the PDC is a bit more problematic. It can be done, but I would not want to do it. I would take the cynide pill at that point.

Jeremy

In reply to Re: Unix - NT passwd synching by enoch
in thread Unix - NT passwd synching by TQuid

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.