The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.
Hi @Glenn Maxwell
Thank you for posting your question in the Q&A Forum.
For Microsoft Exchange Server, the Microsoft Exchange Server Auth Certificate is used for internal OAuth authentication and does not require any domain names or SAN entries.
Regarding your specific questions:
1. New-ExchangeCertificate – DomainName parameter
For the Auth certificate, it is recommended to use:
-DomainName @()
Since this certificate is not used for client-facing services, DNS names are not required.
2. NewCertificateEffectiveDate
Using UTC time is generally recommended:
-NewCertificateEffectiveDate (Get-Date).ToUniversalTime()
This helps avoid potential timing or replication inconsistencies, particularly in multi-server environments.
Suggested sequence:
- Create the new certificate
- Run
Set-AuthConfig -NewCertificateThumbprint - Run
Set-AuthConfig -PublishCertificate - Verify the configuration using
Get-AuthConfig - After Active Directory replication has completed, run
Set-AuthConfig -ClearPreviousCertificate
For official Microsoft documentation on Set‑AuthConfig and certificate configuration, you can refer to: https://learn.microsoft.com/powershell/module/exchangepowershell/set-authconfig
This page covers the parameters used during OAuth certificate rotation and provides the authoritative guidance for managing the Auth configuration in Exchange. There is no need to assign this certificate to IIS. Service restarts are typically not required.
If the environment includes multiple Exchange servers or hybrid configuration, it would be advisable to allow sufficient time for replication before clearing the previous certificate.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.