This is a bummer. It would be nice to turn them all off with one
setting, and check them all with cmd-K.
As I said, you can, more or less. Work Offline (Entourage menu), and check
all accounts except Exchange via cmd-K. Check Exchange by toggling Work
Offline off (it checks immediately without even needing to do a Synchronize
Now). So you could do all at once by toggling Work Offline and also cmd-K
immediately.
If doing two things is really such a nuisance, it could easily be done by an
AppleScript called by a keyboard shortcut. Here's the script:
tell application "Microsoft Entourage"
set working offline to false
execute schedule "Send & Receive All"
tell Exchange account 1 to sync (get its inbox folder)
set working offline to true
end tell
Save this in /Applications/AppleScript/Script Editor as a Script, to the
Entourage Script Menu Items folder in the Microsoft User Data folder in
~/Documents folder. (That's the Documents folder in your user folder.) Give
it a name such as
Receive All \moK
which has a keyboard shortcut of option-cmd-K. (See "About the script menu"
in Entourage Help to learn how to assign keyboard shortcuts to scripts.)
Keep Work Offline and run this script by pressing the keyboard shortcut.
You'd need to Work Online occasionally to sync your other Exchange folders.
Or use this script instead:
tell application "Microsoft Entourage"
set working offline to false
execute schedule "Send & Receive All"
tell Exchange account 1
set allFolders to every folder
repeat with i from 1 to (count allFolders)
set exchFolder to item i of allFolders
sync exchFolder
end repeat
end tell
set working offline to true
end tell
--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <
http://www.entourage.mvps.org/faq/index.html>
AppleScripts for Entourage: <
http://macscripter.net/scriptbuilders/>
Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.
PLEASE always state which version of Microsoft Office you are using -
**2004**, X or 2001. It's often impossible to answer your questions
otherwise.