davemabe has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to set a boolean property to false on an object via ADSI with no luck. I have tried
$group->{$attribute} = 0; and $group->PutEx(1,$attribute,0); and $group->PutEx(4,$attribute,0); and even $group->PutEx(2,$attribute,"FALSE"); all to no avail. Any help would be greatly appreciated.
Dave
Comment on Setting an ADSI boolean property to "false"