Unmount/Mount Volume???

I’ve written the following script and put it in the Start Up Items
folder to unmount a volume on Start Up. My question is, what
Applescript could I use to remount the Volume if needed?
Thank You.

UnMount Volume Script:

tell application “Finder”
set theDisk to disk “Volume Name”
put away theDisk without asking
end tell

Model: PowerMac Beige G3/Sonnet G4
AppleScript: 1.7
Browser: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416
Operating System: Mac OS 9.1.x

It’s been a long time since I used the mount volume deal but I think it went something like this…

This was in OS 8.6 when I did this so I don’t know if it works the same in 9 or not.

mount volume “Volume Name” on server “Server Name” as user name “User Name” with password “Password”

I had to switch which name was the volume to mount and the server (the machine I was working on or the one I wanted to connect to) when I wrote a script to do this. If it doesn’t work the first time try switching which volume you are calling the server with the one you are calling the volume.

Hope this helps.