http://qs321.pair.com?node_id=441469


in reply to Listing Windows 2000 Shares

I can't say I'm familiar with Win32::Netresource, but if you're looking for quick and dirty, you could always capture the output of "net use" with backticks, ala:
my @output = `net use`; # Do something with @output here. . .
Good luck, whatever you try!
MrCromeDome