Re: substitute for NTs "net use"

2003-02-17 Thread Joe Mecklin
ok, thanks. On Mon, 2003-02-17 at 07:54, Felix Geerinckx wrote: > on Mon, 17 Feb 2003 13:37:57 GMT, [EMAIL PROTECTED] (Joe Mecklin) > wrote: > > > Thanks for the info. I appreciate the ideas. Seeing your > > response, I obviously didn't phrase my request as well as I could > > have: > > > >

RE: substitute for NTs "net use"

2003-02-17 Thread Crowder, Rod
The Win32::NetResource Module will let you mount remote share use Win32::NetResource; use strict; use warnings; my$RemoteShare = { 'LocalName' => "Q:", 'RemoteName' => "server\\share", }; my $UserName = "user"; my $Password =

Re: substitute for NTs "net use"

2003-02-17 Thread Felix Geerinckx
on Mon, 17 Feb 2003 13:37:57 GMT, [EMAIL PROTECTED] (Joe Mecklin) wrote: > Thanks for the info. I appreciate the ideas. Seeing your > response, I obviously didn't phrase my request as well as I could > have: > > I'm looking for a Perl module for Linux that allows "net use" > functionality; do

Re: substitute for NTs "net use"

2003-02-17 Thread Joe Mecklin
Jenda, Thanks for the info. I appreciate the ideas. Seeing your response, I obviously didn't phrase my request as well as I could have: I'm looking for a Perl module for Linux that allows "net use" functionality; does anyone know if such a module exists? I believe what is presented here is mea

Re: substitute for NTs "net use"

2003-02-17 Thread Jenda Krynicky
From: Joe Mecklin <[EMAIL PROTECTED]> > I'm tying to write a script which will connect to all PCs in an > internal network to update select files. I currently have it working > using > > system("net use ...") > > but I would like to use whatever module will replicate that > connection/login/log