Exchange 2013 is really not familiar with Powshell's people are not good to use this version.
For information about how Exchange 2013 applies for a certificate, it is divided into several steps:
1 Generating the request certificate file
2 requesting a certificate from the CA
3 Importing a certificate into an Exchange server
4 Assigning Services
There are a lot of tutorials on the internet here without the introduction of the previous one. In daily management, there may be a need for temporary replacement of certificates for some reason. Assigning a service to a certificate can be done graphically by modifying the properties, but this is irreversible, that is, you assign the service to the certificate, and then the certificate will always show that a service has been assigned. Then you want to assign this certificate two times to this service there is no way.
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/72/8E/wKiom1XmgvmzS6ayAAC74kHy_VQ794.jpg "title=" 2015-09-02_130151.jpg "alt=" Wkiom1xmgvmzs6ayaac74khy_vq794.jpg "/>
Now I am in this situation, the original production environment and assigned a certificate, I need to do the test, the certificate is replaced with a test certificate, now want to change back to the original certificate, in the graphical can not be modified.
If you want to modify this certificate assignment service, it can only be done by Powersheel:
1 Gets all the certificate information on the server, primarily the value that you want to thumbprint
Get-exchangecertificate-server XX. xxx.com (FQDN name of the server)
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/72/8B/wKioL1Xmhgmjs7yoAADv2zzyp2U637.jpg "title=" 2015-09-02_130557.jpg "alt=" Wkiol1xmhgmjs7yoaadv2zzyp2u637.jpg "/>
2 Confirm which is the original certificate, confirm the value of the thumbprint for the certificate,
Get-exchangecertificate13a9c7cc6bf9c9b666ea23b8a09afef3180b316f-server Xxx.com|format-list *
This command can see the name of the certificate inside and all relevant information, do not do
3 after assigning the certificate to the corresponding service, to specify the corresponding CAS server, there are two CAS servers such as CAS01 and CAS02
Enable-exchangecertificate-thumbprint 13a9c7cc6bf9c9b666ea23b8a09afef3180b316f-servercas01.xxxx.com-services pop,imap,smtp,iis (select the corresponding service here)
Enable-exchangecertificate-thumbprint 13a9c7cc6bf9c9b666ea23b8a09afef3180b316f-server cas02.xxxx.com-services POP , Imap,smtp,iis
can refer to
https://technet.microsoft.com/en-us/library/bb124950 (v=exchg.150). aspx
Commands for how to obtain certificate information
Https://technet.microsoft.com/en-us/library/aa997231.aspx
How to assign a certificate command
Exchange 2013 Certificate modification or two replacement how to assign services