i use the following script to mount the drive from my imac .
on idle
–mount the iMac drive if it is turned on
try
tell application “Finder”
mount volume “MacHD” on server ¬
“IMAC” as user name “UserName” with password “Password”
end tell
end try
--make sure it is mounted every minute
return 60
end idle
i am trying to do the following with this script:
-
i tried to put a loop in there first to see if it was mounted with a list disks but even when mounted on my desktop it is not showing up in the list. any ideas why this might be happening?
-
once mounted i would like to move it to the dock with my other drives, internal on the computer i am using. is this even possible? tried searching here and google and other places, no luck.
2a) if it can be moved to the dock cahow can it safely be removed from my desktop?
looking forward to any advice…