Outlook 2011 for Mac Autologin Script

peteone
New Contributor

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 4

peteone
New Contributor

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

peteone
New Contributor

Anyone?

talkingmoose
Moderator
Moderator

@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}

peteone
New Contributor

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