I manually backup all my Entourage data using the export feature, but
I'd like to have it done automatically in the early morning hours.
How can I set up an automatic backup schedule?
This can be scripted with AppleScript but are you sure this is how you'd
like to back up your data? The .rge files created by exporting must be
completely imported again before you can read messages in them. You
won't really have any means of determining what's in the archive files
other than dates.
This would probably be the AppleScript syntax you're needing (untested):
tell application "Microsoft Entourage"
export archive to alias "path:to:your:new:file"
only "category"
item types mail items
delete false
end tell
The four lines between the "tell" and "end tell" lines are actually just
one line with spaces between them but I've broken them into four for
easier reading.
This could be put into an Entourage schedule that runs at a specified
time. It can also include all mail, calendar, task, contacts, etc., or
just specified items in categories or projects.
How this works would depend on your criteria. If you need help with
putting something together then post back with details of what you're
doing now.
Hope this helps!
--
bill
William M. Smith, Microsoft Interop MVP - Mac/Windows
Entourage Help Page <
http://entourage.mvps.org/>
Entourage Help Blog <
http://blog.entourage.mvps.org/>
YouTalk <
http://nine.pairlist.net/mailman/listinfo/youtalk>