Zákaznický servis Fakturace:

Pondělí — Pátek:
9:00 - 18:00 Čas SEČ

Technická podpora:

Pondělí — Pátek:
9:00 - 18:00 Čas SEČ

Objednávací systém/Vydání certifikátu:

24/7

Vy se ptáte, my odpovídáme!

CSR Generation: Exchange 2010 (PowerShell)

Exchange 2010 CSR using Exchange Shell

Be advised: You may copy and paste the below commands into your favorite text editor such as Notepad or Notepad++ in order to customize them to suite your needs. We provide them only to show the structure of the New-ExchangeCertificate command (cmdlet).


Method #1: Output to the Screen

  1. Open Exchange Management Shell

  2. Run the following command:
     -> New-ExchangeCertificate -GenerateRequest -SubjectName "C=GB, O=Comodo, cn=owa.comodo.com" -KeySize 2048 -PrivateKeyExportable $true 


    Note: You can copy into notepad (or any text editor) and paste the command into the shell.
    Alternatively, one can run the following command add the SANs(Subject Alternative Names) in the CSR as well. (optional)

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


  3. CSR will be displayed on screen. You can copy and paste this information.


Method #2: Save to File

  1. Open Exchange Management Shell

  2. Run the following commands:
    
    -> $CSR = New-ExchangeCertificate -GenerateRequest -SubjectName "C=GB, O=Comodo, cn=owa.comodo.com" -PrivateKeyExportable $true
    -> Set-Content -Path "C:\2010certreq.txt" -Value $CSR
     

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

Máte další otázky? Napište nám!

Souhlasím

Zadáním svého e-mailu potvrzujete, že jste si pøeèetli Všeobecné obchodní podmínky, Zásady ochrany osobních údajù, a Zásady vrácení penìz a souhlasíte s nimi.

>