Skip to main content
Question

Outlook 2011 for Mac Autologin Script

  • August 26, 2016
  • 4 replies
  • 5 views

Forum|alt.badge.img+3

Hello I'm using setupOutlook.scpt by Nick Amundsen. Which works, however need it to use SSL authentication through port 443 - not 80 as it does by default.
Can someone help me please?

4 replies

Forum|alt.badge.img+3
  • Author
  • New Contributor
  • August 26, 2016

Here is original script https://jamfnation.jamfsoftware.com/viewProduct.html?id=4&view=scripts

I also found this one written by William Smith https://github.com/talkingmoose/Outlook-Exchange-Setup
but couldn't properly set it up

Im specifically interested in implementing these 2 properties from William's script into that First Nick Amundsen script

property ExchangeServerRequiresSSL : true
property ExchangeServerSSLPort : 443


Forum|alt.badge.img+3
  • Author
  • New Contributor
  • August 28, 2016

Anyone?


talkingmoose
Forum|alt.badge.img+36
  • Community Manager
  • August 30, 2016

@peteone, you'll want to modify these two sections of Nick's script to include those extra settings.

property ExchangeServer : ""
-- example: "ExchangeServer.domain.com"

property ExchangeServerRequiresSSL : true
-- True for most servers.

property ExchangeServerSSLPort : 443
-- If ExchangeServerRequiresSSL is true set the port to 443.
-- If ExchangeServerRequiresSSL is false set the port to 80.

property domainName : ""
-- example: "domain"

property emailDomain : ""
-- example : "domain.com"

property WindowsDomain : ""
-- example: "DOMAIN"

And this:

make new exchange account with properties {name:WindowsDomain, full name:fullName, email address:emailAddress, user name:shortName, domain:domainName, server:ExchangeServer, use ssl:ExchangeServerRequiresSSL, port:ExchangeServerSSLPort, background autodiscover:true}

Forum|alt.badge.img+3
  • Author
  • New Contributor
  • August 30, 2016

yeah thanks! I did that yesterday just kind of added it up and just worked