Link to home
Start Free TrialLog in
Avatar of clctechs
clctechsFlag for United States of America

asked on

Microsoft Exchange Security Certificate Error

I have just implemented Exchange 2013 and migrated users to this new domain. We have purchased a Thawte Certificate for autodiscover.domain.org and mail.domain.org, however when my clients open Outlook we get an error stating

Security Alert
SERVERNAME.DOMAIN.LOCAL

2 Green Check marks

1. The security certificate is from a trusted certifying authority
2. The security certificate date is valid

RED X: The name on the security certificate is invalid or does not match the name of the site

Do you want to proceed?
YES
Avatar of becraig
becraig
Flag of United States of America image

You get this because your internal url points to.local.
You need to update your internal url to point to.org

Change your urls using the steps below
http://social.technet.microsoft.com/wiki/contents/articles/5163.managing-exchange-2010-externalinternal-url-s-via-powershell.aspx
Avatar of clctechs

ASKER

Which one would I need to change?
ASKER CERTIFIED SOLUTION
Avatar of Alan Hardisty
Alan Hardisty
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
All the ones under internal url

For internal URLs:

$urlpath = Read-Host "Type internal Client Access FQDN starting with http:// or https://" Set-ClientAccessServer –Identity * –AutodiscoverServiceInternalUri “$urlpath/autodiscover/autodiscover.xml”
Set-webservicesvirtualdirectory –Identity * –internalurl “$urlpath/ews/exchange.asmx”
Set-oabvirtualdirectory –Identity * –internalurl “$urlpath/oab”
Set-owavirtualdirectory –Identity * –internalurl “$urlpath/owa”
Set-ecpvirtualdirectory –Identity * –internalurl “$urlpath/ecp”
Set-ActiveSyncVirtualDirectory -Identity * -InternalUrl "$urlpath/Microsoft-Server-ActiveSync"

Simple replace url path with your .org domain name