This repository was archived by the owner on Apr 21, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,6 @@ The internal namespace you are using.
23
23
. PARAMETER ExternalURL
24
24
The external namespace you are using.
25
25
26
- . PARAMETER DefaultAuth
27
- The default authentication method to set for Outlook Anywhere. Defaults to NTLM.
28
-
29
26
. PARAMETER InternalSSL
30
27
Specifies the internal SSL requirement for Outlook Anywhere. Defaults to True (SSL required).
31
28
@@ -86,7 +83,7 @@ V1.00, 13/11/2014 - Initial version
86
83
V1.01, 26/06/2015 - Added MAPI/HTTP URL configuration
87
84
V1.02, 27/08/2015 - Improved error handling, can now specify multiple servers to configure at once.
88
85
V1.03, 09/09/2015 - ExternalURL can now be $null
89
- V1.04, 19/09 /2016 - Removed DefaultAuth option as it is not required for standard configs
86
+ V1.04, 17/11 /2016 - Removed Outlook Anywhere auth settings, script now sets URLs only
90
87
#>
91
88
92
89
# requires -version 2
@@ -147,7 +144,10 @@ Process {
147
144
Write-Host " `r`n "
148
145
149
146
Write-Host " Configuring Outlook Anywhere URLs"
150
- Get-OutlookAnywhere - Server $i | Set-OutlookAnywhere - ExternalHostname $externalurl - InternalHostname $internalurl - ExternalClientsRequireSsl $ExternalSSL - InternalClientsRequireSsl $InternalSSL
147
+ $OutlookAnywhere = Get-OutlookAnywhere - Server $i
148
+ $OutlookAnywhere | Set-OutlookAnywhere - ExternalHostname $externalurl - InternalHostname $internalurl `
149
+ - ExternalClientsRequireSsl $ExternalSSL - InternalClientsRequireSsl $InternalSSL `
150
+ - ExternalClientAuthenticationMethod $OutlookAnywhere.ExternalClientAuthenticationMethod
151
151
152
152
if ($externalurl -eq " " )
153
153
{
You can’t perform that action at this time.
0 commit comments