X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Kevin Markle <kmarkle@pbs.org>
Subject:  Re: Mapping windows drives in cygwin?
Date:  Fri, 20 Apr 2007 16:31:52 -0400
Lines: 59
Message-ID:  <mn.a3df7d7488e7cc57.51129@pbs.org>
References:  <mn.9b2e7d74755eba61.51129@pbs.org> <4627F4E8.2020903@yahoo.com>
Reply-To: kmarkle@pbs.org
Mime-Version:  1.0
Content-Type:  text/plain; charset="iso-8859-15"; format=flowed
Content-Transfer-Encoding:  8bit
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Keith Christian expressed precisely :
> Kevin Markle wrote:
>> Hello,
>> 
>> Does anybody know of a simple way to map network drives from withing a 
>> cygwin script? :o)
>
> Hi Kevin,
>
> This method works:
>
>
> #====Using a hostname for the remote machine=====
> 	net  use  \\\\sandstone.bedrock.net\\IPC$  /user:bedrock\\fflintstone  
> /persistent:no
> 	(You'll be prompted for a password)
>
>
> #====Using an IP address for the remote machine=====
> 	net  use  \\\\192.168.2.100\\IPC$  /user:bedrock\\fflintstone  
> /persistent:no
> 	(You'll be prompted for a password)
>
>
> #=====Map drive Z: to the C: drive on the remote server=====
> 	net  use  z:  \\\\sandstone.bedrock.net\\C$
> 	--or--
> 	net  use  z:  \\\\192.168.2.100\\C$
>
> 	ls -latr /cygdrive/z  (get a directory listing on the mapped drive)
>
>
> The first line sets up an IPC channel to the server you're interested in 
> mapping to.
> The second maps drive Z: to the C: share.
>
> To UNMAP, use this syntax, just as in CMD.EXE.
>
> 	net use Z: /delete
>
>
>
> =========Keith

I tryed the last method which will give me a drive letter and I get:
kmarkle@backup ~
$ net use y: \\winops-hq\c$
System error 67 has occurred.

The network name cannot be found.


kmarkle@backup ~
$ net use y: \\\\winops-hq\c$
System error 67 has occurred.

The network name cannot be found.




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

