Posted on 08-26-2016 10:04 AM
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?
Posted on 08-26-2016 10:09 AM
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
Posted on 08-28-2016 10:01 AM
Anyone?
Posted on 08-30-2016 08:08 AM
@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}
Posted on 08-30-2016 02:22 PM
yeah thanks! I did that yesterday just kind of added it up and just worked