Since mid-2023, Exchange 2016 and Exchange 2019 do not need the MSMQ (Message Queuing) feature on the Windows Server anymore. You can de-install it via PowerShell (Run as Administrator):
Remove-WindowsFeature NET-WCF-MSMQ-Activation45,MSMQ
A server restart is needed after completion of the command.
In Microsoft Exchange on-prem, there is a self-signed certificate called
Microsoft Exchange Server Auth Certificate
This not bound to any IIS web site, but still needed for authentication purposes. It is valid for 5 years. If the certificate has expired or is about to expire, you can renew it with the following procedure:
Start the Exchange Management Shell and type:
(Get-AuthConfig).CurrentCertificateThumbprint | Get-ExchangeCertificate | Format-List
This should show you the details of
Read more [...]
In Microsoft Exchange on-prem, there is an internal certificate that is bound to the back-end web site. This certificate is self-signed and valid for 5 years. It is called
Micorosoft Exchange
The subject of the certificate is the server name itself. Find below the procedure to renew this certificate. It does not matter if the certificate is already expired or still valid.
Start the Exchange Management Shell
Get the thumbprint of the current certificate:
Get-ExchangeCertificate | where
Read more [...]
Exchange constantly writes DB Logs to disk. These logs only get cleared when a backup is done.
If you need to clear those logs without a backup, use the following commands (if the DB log files are on the d: drive):
Open a cmd box with admin rights
diskshadow
add volume d:
begin backup
create
end backup
That's it. You should now have much more free disk space.
Sometimes, the default maximum message size (including attachments) in Exchange is not enough (30 MB is the standard). To increase this to 100 MB, do the following:
First check the current maximum size on all relevant Exchange components:
Get-TransportConfig | ft MaxSendSize, MaxReceiveSize
Get-ReceiveConnector | ft Name, MaxmessageSize
Get-SendConnector | ft Name, MaxMessageSize
Get-Mailbox Administrator |ft Name, MaxsendSize, MaxReceiveSize
Then set it to 100 MB for all components:
Set-TransportConfig
Read more [...]
When I wanted to install CU11 for Exchange 2016, at the Prerequisites Check, I got the following error message:
"There is a pending reboot from a previous installation of a Windows Server role or feature."
I restarted the server twice, but still got the same message. After messing around with some registry keys and still no luck, I looked at the error message in more detail. The key part is "installation of a Windows Server role or feature". So this was not talking about a normal pending reboot
Read more [...]
My experience with servers, networks and gadgets.