Posted on 06-06-2019 10:23 AM
I am looking for a way to disable autodiscover on outlook 2016 and deploy it to multiple machines. Some of the scripts I have found are just failing when I try to push them to the machines.
Posted on 06-06-2019 12:46 PM
Configuration profile?
Posted on 06-06-2019 01:19 PM
You could use AppleScript and use something like this:
tell application "Microsoft Outlook"
set background autodiscover of every exchange account to false
end tell
You can use a policy to run it as 'osascript' and deploy it that way as well.
Rob
Posted on 06-12-2019 07:50 AM
Do toss that into a script and throw that script into a policy or how do i go about running apple script through a policy? I have tried running that and It comes back as failed everytime I do so.
Posted on 06-20-2019 02:56 PM
Try putting it into the execute command field in a policy like this:
osascript -e 'tell application "Microsoft Outlook"' -e 'set background autodiscover of every exchange account to false' -e 'end tell'
Rob