Skip to content

Instantly share code, notes, and snippets.

@stantont
Created May 11, 2009 00:34
Show Gist options
  • Select an option

  • Save stantont/109808 to your computer and use it in GitHub Desktop.

Select an option

Save stantont/109808 to your computer and use it in GitHub Desktop.
--modified version of http://www.macosxhints.com/article.php?story=20041024142036862
--skips non-hard drives, ie, DVD/CD drives
tell application "Finder"
set bootDisk to the name of startup disk
set allVolumes to the name of every disk whose (name is not bootDisk) and (local volume is true) and ((format is Mac OS Extended format) or (format is Mac OS format))
repeat with myDisk in allVolumes
try
eject myDisk
end try
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment