ibc has asked for the wisdom of the Perl Monks concerning the following question:

I am trying to get the members of a local group on a W2K box, Perl 5.00503. The problem is that the array returns as binary. The status returns as 1, which is a good status code. The number of members that print is 2, which is correct. This same code works fine on another W2K box.
$status = Win32::NetAdmin::LocalGroupGetMembers("", "NTGroupName", \@m +brs); print "status = $status\n"; foreach $result (@mbrs) { print "line = $result\n"; }
Any help is truly appreciated!