in reply to Re: Re: Win32:NetResource problem
in thread Win32:NetResource problem

From the Win32::NetResource docs...
use strict; use Win32::NetResource qw(:DEFAULT GetSharedResources GetError); if (GetSharedResources(my $resources, RESOURCETYPE_ANY, { RemoteName => "\\\\" . Win32::NodeName() })) { foreach my $href (@$resources) { print "-----\n"; foreach(keys %$href) { print "$_: $href->{$_}\n"; } } }

is this what you are looking for?

-Waswas