
Exchange 2019 PowerShell

Exchange 2019 – Create a send connector with PowerShell
In Exchange, whether it is Exchange 2019 or 2013 or 2016 or 2010, you need a send connector to be able to route email to the internet etc. You can create a send connector using the Exchange Admin Center (EAC) but what fun would that be when you can use PowerShell....

Exchange 2019 – Update the Autodiscover Internal URL
In Exchange 2019, to have clients connect without error from the outside, one of the URL's that need to be updated is the Autodiscover record. The update process is similar/the same as Exchange 2016 and can be done with a single PowerShell command. You can first check...

Exchange 2019 – Check edition with PowerShell
In Exchange 2019, like previous versions, you can check your edition of Exchange by running the following command: Get-ExchangeServer | fl or by adding another section to the script: Get-ExchangeServer | fl *Edition* You can see the one command gives you less...

Exchange 2019 – Move Transport Database to new drive.
In Exchange, whether it is Exchange 2013 or 2016 and the new version 2019, you can move the transport database off the C:\ drive to another drive so you don't hit back pressure firstly and run out of space. You can find the script to move the database in the scripts...

Exchange 2019 – Check Transport Server
In previous Exchange versions to check a queue on a specific server you could use the Get-TransportServer command, however if you now run this on Exchange 2019, you receive a nice lengthy warning to say it is going to be removed in future versions of Exchange, yet we...

Exchange 2019 – Check mail queue
Here is a quick tip to check the mail queue on an Exchange 2019 Server. If you launch the Exchange Management Shell (EMS) you can type in the following command: Get-Queue -Server Exchange-2019-Server Nothing much to it.Hope it helps.