Last updated on 06 Sept 2023, 13:20:13.
Category:
All about SSL certificates
This article shows you how to install an SSL certificate on Microsoft Exchange 2010. If you didn't generate a certificate request (CSR) yet, and didn't order a certificate, please see « Exchange 2010 SSL Certificate Request Instructions ».
The documentation for installing an SSL certificate on other versions of Microsoft Exchange can be found in the following articles:
You may have to install the Certificate Authority's root and intermediate SSL certificates if they haven't been installed on the server before. Please check out the « How to install root and intermediate SSL certificates on Microsoft IIS » for instructions.
You can install your SSL certificate either by using the graphical interface of the Microsoft Exchange Management Console, or through the command-line environment of Microsoft Exchange Management Shell, first introduced in Exchange 2007.
Import-ExchangeCertificate -FileData ([Byte[]]$(Get-Content -Path <strong>c:\mail_server_com.crt</strong> -Encoding byte -ReadCount 0)) | Enable-ExchangeCertificate -Services "IIS,POP,IMAP,SMTP"The -Services parameter can be any of SMTP, IMAP, POP, IIS and UM. You can also disable a certificate by setting the -Services parameter to "None".
Get-ExchangeCertificate -DomainName <strong>mail.server.com</strong>This should output a certificate thumbprint, a list of services for which it is enabled, and the Common Name of your certificate. If your certificate was not properly enabled, you can rerun the Enable-ExchangeCertificate cmdlet with the certificate's thumbprint:
Enable-ExchangeCertificate -ThumbPrint <strong>[paste thumbprint here]</strong> -Services "SMTP, IMAP, POP, IIS"
Were not all your questions answered?
Don't worry, we will be happy to help you via a support request!