Exchange 2010/2013 Helpful scripts

This sets your inside/outside and auto-discover URLs to the same address so you can buy a single domain SSL for your exchange server. $FQDN = Read-Host -Prompt ‘mail.example.com’ Get-webservicesVirtualDirectory | Set-webservicesVirtualDirectory –ExternalUrl https://$FQDN/Ews/Exchange.asmx –InternalUrl https://$FQDN/Ews/Exchange.asmx Get-OabVirtualDirectory | Set-OabVirtualDirectory –ExternalUrl https://$FQDN/Oab –InternalUrl https://$FQDN/Oab Get-EcpVirtualDirectory | Set-EcpVirtualDirectory –ExternalUrl https://$FQDN/Ecp –InternalUrl https://$FQDN/Ecp Get-OwaVirtualDirectory | Set-OwaVirtualDirectory –ExternalUrl https://$FQDN/Owa –InternalUrl https://$FQDN/Owa Get-ActiveSyncVirtualDirectory | Set-ActiveSyncVirtualDirectory -ExternalUrl Continue reading Exchange 2010/2013 Helpful scripts