Hi, I have a script which uses the Win32::AdminMisc::GetMachines but it
no
longer works. I'm using:

Perl: v5.8.4.810
Win32::AdminMisc: v7.14.2003
Repository: RothConsulting http://www.roth.net/perl/packages

I am able to run other Win32::AdminMisc functions, such as
Win32::AdminMisc::GetComputerName().
My questions is "Win32::AdminMisc::GetMachines" still a function
available
on AdminMisc. This is my script:

use Win32;
use Win32::AdminMisc;

$nt_login = 'Nemo';
$x = 0;
$y = 1;

while ($y < 10)
{
my $Prefix = "$nt_logon$x$y";

if( Win32::AdminMisc::GetMachines( $Server,
UF_WORKSTATION_TRUST_ACCOUNT, @List, "$Prefix" ) )
{
print "n ACCESSED system namesn";
}
else
{
print "nDID NOT access system namesn";
}
}