July 2017
Intermediate to advanced
648 pages
31h 9m
English
As you can see from these steps, exporting a certificate from one server and importing it on an additional server is rather complex and would be even more so if you want to do this on 5 or 10 servers. If this is a common task that needs to be done frequently, then it makes sense to automate it even further. The following PowerShell function will automate the process of exporting a certificate from a source server and will import the certificate on one or more target servers:
Function Deploy-ExchangeCertificate { param ( $SourceServer, $Thumbprint, $TargetServer, $Password, $Services ) $password = ConvertTo-SecureString -String $Password ' -AsPlainText -Force $cert = Get-ExchangeCertificate -Thumbprint $Thumbprint ' -Server ...Read now
Unlock full access