by edward | Jan 1, 2019 | Exchange 2019 PowerShell
In Exchange 2019 like other versions you can export your SSL certificate to import to another server, we first need to get the thumbprint of the SSL certificate that we want to export, to do this you can run the following command: Get-ExchangeCertificate In this...
by edward | Jan 1, 2019 | Exchange 2019 PowerShell
In Exchange 2019, you can generate a new CSR and then import the signed certificate from your registrar like Digicert or RapidSSL or Godaddy etc. To generate a CSR in Exchange 2019, you can run the following command from the Exchange Management Shell (EMS): $cert =...
by edward | Jan 1, 2019 | Exchange 2019 PowerShell
In Exchange, if you try and move a mailbox that h as a completed move request, you will receive the following error: To fix this error, you need to clear the move requests, to do so you can run the following command: Get-MoveRequest | Remove-MoveRequest As you can see...
by edward | Dec 31, 2018 | Exchange 2019 PowerShell
In Exchange, whether it is 2013,2016 or 2019, you have a list of Transport Agents. To view them you can run the following command: Get-TransportAgent In the scripts folder with the Exchange installation directory you can install the Anti-Spam Agents Transport Agent...
by edward | Dec 31, 2018 | Exchange 2019 PowerShell
Moving mailboxes is a daily task for Exchange Admins. The process is the same as Exchange 2013 or 2016. To move a single user mailbox you can use the following command: New-MoveRequest -Identity edwardvbs -TargetDatabase Store1 To check the status of the mailbox move...