by edward | Jan 2, 2019 | Exchange 2019 PowerShell
In Exchange 2019, like Exchange 2010/2013 and 2016, you can move your active mailbox databases to another server using the scripts that come with your Exchange Installation. They are located in the V14\Scripts or V15\Scripts folder depending on your version you have...
by edward | Jan 2, 2019 | Exchange 2019 PowerShell
In Exchange you will get the requests now and again to grants rights to users calendar, based on the situation it can be a PA to a Director or a colleague needing access to another ones calendar. To grant the rights, you can run the following command:...
by edward | Jan 2, 2019 | Exchange 2019 PowerShell
Here is a quick tip on creating a mailbox with PowerShell in Exchange 2019, it is a simple command that will prompt you for the password and once done you will have a new user. There are more options you can set with the command but we will just create a simple user...
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...