Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: DBMS and network drive

by tokpela (Chaplain)
on Aug 01, 2009 at 13:19 UTC ( [id://785092]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $unc = '//10.1.0.22/path/to/use';
    
    open(my $fh, $unc) or die "[Error] COULD NOT OPEN FILE: [$unc] - [$!]"
    +;
    
  2. or download this
    net use x: \\computer name\share name
    
  3. or download this
    net use x: \\computer name\share name password /user:username
    
  4. or download this
    net use x: \\computer name\share name password /user:username /persist
    +ent:yes
    
  5. or download this
    my $drive = 'X';
    my $unc   = '//10.1.0.22/path/to/use'
    ...
    my $pass  = 'xyz';
    
    Map $drive => $unc, { username => $user, passwd => $pass };
    
  6. or download this
    my $drive = 'X';
    my $unc   = '//10.1.0.22/path/to/use'
    ...
    my $pass  = 'xyz';
    
    Connect $drive => $unc, { username => $user, passwd => $pass };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://785092]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (8)
As of 2024-04-19 08:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found