Re: Mount volume troubles
Re: Mount volume troubles
- Subject: Re: Mount volume troubles
- From: Paul <email@hidden>
- Date: Sun, 1 Jul 2001 15:44:56 +0100
On 29/6/01 9:15 am, Doug Watkins <email@hidden> wrote
I have a script to log users onto a shared volume on a G4 466 MHz
server running under OS 9.04 and ASIP 6.3.3 and open their users
folder. The script logs onto the volume without any problems via
AppleTalk using the line:
mount volume "Staff" on server "G4 Server" as user name userName with
password userPwd
but cannot get the volume to mount using IP with the line:
mount volume "afp://username:email@hidden/Staff/"
The error produced is error number -1070 which appears to be a
parameter error.
IP - 10.67.51.14
server name - G4 Server
share point - "Staff"
What is strange is that if I mount the volume using the Chooser and
then run the script it quite happily proceeds to the next line in the
script.
I have seen reference to a problem with the mount volume command when
using ASIP 6.3. I have tried AppleScript 1.5.5 and 1.6.
Any ideas?
Hi Doug,
try the following line:
mount volume "afp://10.67.51.14/Staff/" as user name userName with
password userPwd
--Paul Welch