hi,
Can anyone say it is good or not, i got two results confused about it, why two? and why different?
steps below of what i did.
check authentication method.
[PS] C:\Windows\system32>Get-OutlookAnywhere -Server exch | fl *External*
ExternalHostname : exch.kbrokerage.com
ExternalClientAuthenticationMethod : Negotiate
ExternalClientsRequireSsl : True
[PS] C:\Windows\system32>Get-OutlookAnywhere -Server exch | fl *Internal*
InternalHostname : exch.kbrokerage.com
InternalClientAuthenticationMethod : Negotiate
InternalClientsRequireSsl : True
change to Ntlm.
[PS] C:\Windows\system32> Set-OutlookAnywhere -Identity "exch\RPC (Default Web Site)" -ExternalHostname "exch.kbrokerage.com" -ExternalClientAuthenticationMethod ntlm -ExternalClientsRequireSsl $true
[PS] C:\Windows\system32>Set-OutlookAnywhere -Identity "exch\RPC (Default Web Site)" -InternalClientAuthenticationMethod ntlm -InternalClientsRequireSsl $true
confirm changes
[PS] C:\Windows\system32>Get-OutlookAnywhere -Server exch | fl *External*
ExternalHostname : exch.kbrokerage.com
ExternalClientAuthenticationMethod : Ntlm
ExternalClientsRequireSsl : True
[PS] C:\Windows\system32>Get-OutlookAnywhere -Server exch2013 | fl *Internal*
InternalHostname : exch.kbrokerage.com
InternalClientAuthenticationMethod : Ntlm
InternalClientsRequireSsl : True
but this below result can any one explain me, and guide me to right direction.
[PS] C:\Windows\system32>get-outlookanywhere |fl *hostname,*auth*
ExternalHostname : exch.kbrokerage.com
InternalHostname : exch.kbrokerage.com
ExternalClientAuthenticationMethod : Ntlm
InternalClientAuthenticationMethod : Ntlm
IISAuthenticationMethods : {Negotiate}
ExternalHostname :
InternalHostname : exch.kbrokerage.com
ExternalClientAuthenticationMethod : Negotiate
InternalClientAuthenticationMethod : Ntlm
IISAuthenticationMethods : {Basic, Ntlm, Negotiate}