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


in reply to Map drives and printers from Perl

my $printerpath="\\server\printername";
should be
my $printerpath="\\\\server\\printername";

$workstation->MapNetworkDrive("X:",\\server\path);
should be
$workstation->MapNetworkDrive("X:","\\\\server\\path");

And it would be good if you showed how to check for success.