What is the Powershell command to renew Exchange 2007 SSL certificate?
bmowry
7:29 am on August 10, 2010
To create a “Certificate Signing Request” (CSR) file on the Exchange 2007 Client Access Server (CAS) open the Exchange Management Shell and type the following command:
New-ExchangeCertificate -GenerateRequest -SubjectName “C=Country,S=state,L=city,O=organization,OU=This is the organisation unit that the section of the company which will take charge of the certificate,CN=FQDN to the CAS” -DomainName include all domain names here including autodiscover.com -privateKeyExportable $true -path this is the path to where you would like to save the file
This is the file you need to request your certificate.
bmowry 7:29 am on August 10, 2010
To create a “Certificate Signing Request” (CSR) file on the Exchange 2007 Client Access Server (CAS) open the Exchange Management Shell and type the following command:
New-ExchangeCertificate -GenerateRequest -SubjectName “C=Country,S=state,L=city,O=organization,OU=This is the organisation unit that the section of the company which will take charge of the certificate,CN=FQDN to the CAS” -DomainName include all domain names here including autodiscover.com -privateKeyExportable $true -path this is the path to where you would like to save the file
This is the file you need to request your certificate.