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:30:07 -0600
set myVolume to "Name of Drive to mount"
set myServer to "Name of Server with myVolume"
tell application "Finder" to set volExists to exists (disk myVolume)
if volExists = false then
try
mount volume myVolume on server myServer
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.