http://www.perlmonks.org?node_id=1026148


in reply to Re: Win32::FileOp instead of netuse
in thread Windows Net Use

Can you post your code? It would help to see which line the error message is associated with.

When I cut and paste my code snippet into a script and execute it, I get:

c:\pub>mapped.pl
E => \\spsrv_print\e

c:\pub\>

...this is with Strawberry Perl 5.16.2 on Win7x64.

Replies are listed 'Best First'.
Re^3: Win32::FileOp instead of netuse
by Anonymous Monk on Apr 01, 2013 at 05:46 UTC

    I have used the same script as below:

    use strict; use warnings; use Win32::FileOp; my %drive = Mapped or die $^E; for my $key (sort keys %drive) { print "$key = $drive{$key}\n"; } OUTPUT:This network connection does not exist at net-fileOP.pl line 5.

    OS:Win2008 R2 Server Perl Version:This is perl 5, version 14, subversion 2 (v5.14.2) built for MSWin32-x86-multi-thread