How can you save attachments from entourage using applescript?

Apple

1 answer

Answer

1192319

2026-05-17 12:10

+ Follow

To save attachments from Entourage using AppleScript, you can use a script that targets the specific messages in your Entourage inbox. The script should loop through the selected messages, check for attachments, and save them to a specified folder on your Mac. You can utilize the save command for attachments to automate this process. Here's a simple example to get you started:

<code class="language-Applescript">tell application "Microsoft Entourage"

set selectedMessages to selected objects of current view repeat with msg in selectedMessages repeat with att in attachments of msg save att in file "Macintosh HD:Users:YourUsername:Desktop:" & name of att end repeat end repeat end tell

</code>

Make sure to adjust the file path in the script to your desired save location.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.