Created
May 11, 2009 00:34
-
-
Save stantont/109808 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --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