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