RE: Mount/Log On Network Drives??
RE: Mount/Log On Network Drives??
- Subject: RE: Mount/Log On Network Drives??
- From: Ed Walter <email@hidden>
- Date: Tue, 29 Oct 2002 12:34:56 -0600
Sorry... with password it would be:
set myVolume to "Name of Drive to mount"
set myServer to "Name of Server with myVolume"
set myPassword to "Your Password"
tell application "Finder" to set volExists to exists (disk myVolume)
if volExists = false then
try
mount volume myVolume on server myServer with password
myPassword
on error
display dialog "Could not mount \"" & myVolume & " \""
buttons {"Cancel"} with icon stop
return
end try
end if
-ed-
-----Original Message-----
From: Kenton Muschenheim [
mailto:email@hidden]
Sent: Tuesday, October 29, 2002 12:00 PM
To: email@hidden
Subject: Mount/Log On Network Drives??
Is there any way to AppleScript mounting and logging in (Usernamer/Password)
to a networked drive in OS 9?
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.