For example, a user reported the following:
I set the Exchange Server to be: https://mail.microautomation.comThe fact that this is happening implies that the Autodiscover response for this user’s server is incorrect. However, there is a workaround using Applescript. Once Outlook is running, launch the AppleScript Editor and run the following script:
and after it connects, the URL changes to: https://mail.microaut.com/EWS/Exchange.asmx
tell application "Microsoft Outlook" set background autodiscover of exchange account "NameOfAccount" to false end tellReplace “NameOfAccount” with the actual name of the account. Once this is run, Outlook should no longer replace the server URL.
NameOfAccount would equal the Account Description field in your Exchange account’s settings.
We were experiencing this issue, but I am now using a couple of Apple Scripts to manage this. They’ve been working so far.
**To disable autodiscover**
tell application “Microsoft Outlook”
set background autodiscover of every Exchange account to false
end tell
**To enable autodiscover**
tell application “Microsoft Outlook”
set background autodiscover of every Exchange account to true
end tell
*****************************************************************************
No comments:
Post a Comment