in reply to Setting Attribute Values with ADSI
$userObject->{displayName} has become an array reference. It's not at all clear why SetInfo should change displayName/FullName, however you can show the contents of the array using:
print "@{$userObject->{displayName}}\n";
which may shed some light on what is going on.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Setting Attribute Values with ADSI
by ItsMe2003 (Initiate) on Jan 01, 2012 at 08:54 UTC |