Re: How to mount a volume?
Re: How to mount a volume?
- Subject: Re: How to mount a volume?
- From: Adam Bell <email@hidden>
- Date: Wed, 15 Nov 2006 12:39:46 -0400
Title: Re: How to mount a volume?
At 7:51 AM -0700 11/15/06, Michelle Steiner wrote:
If an external drive (firewire in this
specific case) has been unmounted, you can mount it with disk
utility. It shows up in the left panel, and you can then click
on the "Mount" button or use the Mount command in the File
menu (or its keyboard shortcut) to mount it.
Is it possible to mount it with an
Applescript?
-- Michelle
If you know it's identifier..
I use this for my external firewire (which always shows up at the
end of the list):
set D to
do shell script
"diskutil list" -- gets a list of everything thats live and
connected whether mounted or not.
set E to last word
of last
paragraph
of D -- works for my case
do shell
script "diskutil
mount " &
E -- mounts it.
--
"Experience in that marvelous thing
that enables you to recognize a mistake when you make it again."
--F. P. JONES
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list
(email@hidden)
Help/Unsubscribe/Update your Subscription:
>esscable.net
Archives:
http://lists.apple.com/mailman//archives/applescript-users
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/mailman//archives/applescript-users
This email sent to email@hidden