Base de Conhecimento

Enable additional services on an existing UCC  Imprimir este Artigo

Use the commands from below:

Exchange 2007:

Enable-ExchangeCertificate -Thumbprint $THUMBPRINT -Services "POP, IMAP, IIS, SMTP"


Exchange 2010:
(Note: do not use quotation marks)

Enable-ExchangeCertificate -Thumbprint $THUMBPRINT -Services POP, IMAP, IIS, SMTP


Replace $THUMBPRINT with the certificate thumbprint this can be found by viewing the certificate under the certificate details inside the Microsoft Management Console's Certificate Snap-in for the Local Computer account.


Note: Also, if you have existing services, you will need to re-list them upon entering the command.

Esta resposta lhe foi útil?

Artigos Relacionados

Java Keytool: commands
Deleting a certificate:  keytool -delete -alias aliasname List all of the...
How do I make my own bundle file from CRT files?
You may do this using you favorite text editor or by using the command line.Example: #...
Convert certificates formats (PEM/P7B/PFX/DER)
You can change certificate format using OpenSSL commands or SSL Converter tool. The...
Changing .crt file into the .cer format
Double-click on the yourwebsite.crt file to open it into the certificate display. In a new...
Converting .pfx file for use with Apache
Run the following command with open SSL:  openssl pkcs12 -in mypfxfile.pfx -out...