automount network drives in panther

andehlu

this modern love
hey all.
right now i have shorcuts to my network drives in finder which is great but they dont mount until I click them. Is there anyway to have these network drives mount on boot?
Thanks
 
Put them in your Starup Items in the Accounts PreferencePane.
Boot time will be slower doing this.
 
I use an AppleScript I made into an app that runs at startup and it works fine. It doesn't check for the machine before hand or anything but it works like a champ.

To add multiple drives, just duplicate the "mount" line for each one.

AppleScript Code:
-----------------
tell application "Finder"
mount volume "afp://servername/volumename" as user name "yourusername" with password "yourpassword"
end tell
 
Back
Top