Forum Discussion
Which Cert is using what - Exchange onprem 2013
- Sep 21, 2020
I try it in my exchange 2016 and the service shows None if the certificate is not assign with any service.
I also got some warning in my exchange regarding some expired certificate, but I ignore them as these certificate are not assign with any service or has been replaced with another new certificate.
run the following command for more infomatino and post the all result back
Get-ExchangeCertificate |where {($_.Services -notlike "none") -and ($_.Services -notlike $null)}| select thumbprint,Services,Subject
This command will show you a list of all certificate and the assigned services with them.
farismalaeb Sure
I try it in my exchange 2016 and the service shows None if the certificate is not assign with any service.
I also got some warning in my exchange regarding some expired certificate, but I ignore them as these certificate are not assign with any service or has been replaced with another new certificate.
run the following command for more infomatino and post the all result back
Get-ExchangeCertificate |where {($_.Services -notlike "none") -and ($_.Services -notlike $null)}| select thumbprint,Services,Subject
This command will show you a list of all certificate and the assigned services with them.
- Ali FadaviniaSep 22, 2020Iron Contributor
- farismalaebSep 22, 2020Steel Contributor
this seems silly thing from powershell,
If you use ISE to connect to exchange, the result for Service will be null,
try to use the Exchange Server Manamgement Shell in the server it self ( the Powershell that come with exchange) and run the command, you will see that the result are available.
Let me know the update.
Thanks
- Ali FadaviniaSep 22, 2020Iron ContributorYou are right, it is working now in the Exchange Server Management Shell in the server itself.
But when I remote connect to the server via powershell it did not work.
Thanks you!