Exchange 2010  Print this Article

Generate Certificate Signing Request for Exchange 2010

Method 1:
Open Exchange Management Shell
Run the following command:

-> New-ExchangeCertificate -GenerateRequest -SubjectName "C=GB, O=Comodo, cn=owa.comodo.com" -PrivateKeyExportable $trueCSR will be displayed on screen. You can copy and paste this information.

Method 2:
Open Exchange Management Shell
Run the following commands:

-> $CSR = New-ExchangeCertificate -GenerateRequest -SubjectName "C=GB, O=Comodo, cn=owa.comodo.com" -PrivateKeyExportable $true

Enter a filename and location to save your CSR.

-> Set-Content -Path "C:\2010CSR.txt" -Value $CSR

At the path location specified in the previous step, your CSR will be written to that file name you have provided.

Was this answer helpful?

Related Articles

What is CSR and who needs it?
A Certificate Signing Request is a text generated on the server that is used to create your SSL...
Apache/OpenSSL
To generate a pair of private key and public Certificate Signing Request (CSR) for a webserver,...
Apache (with mod_ssl)
Installing SSL certificate on Apache with mod_ssl To install certificate you need 2...
Apache (Multi-Domain version)
To generate CSR file which includes more than one Fully Qualified Domain Name, you need to...
Apple Mac OS X Server
CSR is generated in 2 steps.I. Private key generation1. Log into server and open...