Exchange 2019: The basic configuration

After a short how-to on the Exchange 2019 installation, here are the instructions for the initial configuration. The basic configuration is almost identical to the configuration of an Exchange 2016 server. So if you have already worked with Exchange 2013/2016, you will quickly find your way around here. If Exchange 2019 has been installed on Server 2019 Core, the steps described here can be followed in ... Read more

Exchange 2016: Configure URLs and hostnames via PowerShell

To specify the URLs and hostnames of an Exchange 2016 server, the following script can be used: #Hostname for Exchange Webservices, OWA, Outlook Anywhere, Active Sync: $OutlookHostname = "outlook.frankysweb.de" #Hostname for Autodiscover: $AutodiscoverHostname = "autodiscover.frankysweb.de" #OWA $owa = "https://" + "$OutlookHostname" + "/owa" write-host "OWA URL:" $owa Get-OwaVirtualDirectory -Server $env:computername | Set-OwaVirtualDirectory -internalurl $owa -externalurl $owa ... Read more

Exchange 2016: The basic configuration

The basic configuration of Exchange 2016 is not much different from the configuration of Exchange 2013. In this article there is a short guide that covers the essential points: After installing Exchange 2016, I got into the habit of first renaming the database and moving it to its destination, this is done via shell with the ... Read more