Displaying 1 result from an estimated 1 matches for "cleartext2unicode".
2004 Aug 20
0
Creating domain users in AD from Linux
...did not work, `net ads password' did (go figure).
    $ net ads password foobar secret -S pdcname -Uadminname%adminpassword
Also doing that with ldapmodify works:
    $ cat >changepwd.ldif
    dn: CN=foobar,CN=Users,DC=yoursite,DC=com
    changetype: modify
    replace: unicodePwd
    $ cleartext2unicodepwd secret >>changepwd.ldif
    $ cat changepwd.ldif
    dn: CN=foobar,CN=Users,DC=yoursite,DC=com
    changetype: modify
    replace: unicodePwd
    unicodePwd::IgBzAGUAYwByAGUAdAAiAA==
    $ kinit adminname
    Password for adminname@SITE.COM: 
    $ ldapmodify -H ldap://activedirectory.site...