Knowledge Base

How to export/Import the certificates between Windows servers

Moving an SSL certificate from one Windows server to another is possible by exporting a PFX file from one server the certificate is installed already on, and importing it to another server. Creating a PFX file is the only way to transfer the certificate with the corresponding private key from a Windows server. Besides the certificate and the private key, a PFX file may contain the intermediate certificates as well. Altogether, this makes PFX a unified password-protected container to exchange certificate information (public and private keys) in a single file.

Exporting a certificate from a Windows server can be done either in Microsoft Management Console (MMC) or via IIS Manager if the certificate was already installed.

Export using MMC

  1. Press Win+R, type in mmc and click OK to open Microsoft Management console:

    exp_certs_windows_01

  2. Click File in the Menu Bar and then select Add/Remove Snap-in:

    exp_certs_windows_02

  3. Select Certificates from the ‘Available snap-ins’ field and click Add:

    exp_certs_windows_03

  4. Choose Computer account:

    exp_certs_windows_04

  5. Select Local Computer to manage the snap-in.

    Note: to see the certificates in the local computer store, you should be logged in as Administrator.

    exp_certs_windows_05

  6. Click OK to add the selected snap-in to console window:

    exp_certs_windows_06

  7. Go to the Personal > Certificates store, right-click on your certificate that should be exported, and select All Tasks > Export:

    exp_certs_windows_07

  8. When Certificate Export Wizard opens, click Next to proceed further:

    exp_certs_windows_08

  9. When prompted, select the radio button ‘Yes, export the private key’ and press Next:

    exp_certs_windows_09

    If the ‘Export the private key’ is not clickable, the private key for the certificate is not exportable or is absent on the machine, and you will not be able to export a PFX file. You will need to generate a new CSR code with an exportable private key and reissue your certificate to be able to export a certificate.

  10. In the Export File Format dialogue window select Personal Information Exchange - PKCS #12 (.PFX) as the format you want to use. You may also check the Include all certificates in the certification path if possible option to place all intermediate certificates into the PFX file. Once done, click Next:

    exp_certs_windows_10

  11. Specify the password for the PFX file and click Next.

    This password is very important. Please remember it; this password will be required when importing a PFX file on a new server.

    exp_certs_windows_11

  12. Specify location and name of the file where PFX will be exported. Click Next:

    exp_certs_windows_12

  13. To complete the wizard, click the Finish button. The certificate along with the private key have been successfully exported to the PFX file:

    exp_certs_windows_13

Export using IIS.

  1. Go to Start > Administrative Tools > Internet Information Services (IIS) Manager.
  2. Select the server on which the certificate is installed.
  3. Choose the ‘Server Certificates’ option in the center menu:

    exp_certs_windows_14

  4. Right-click on the needed certificate and select Export.

    Only the certificates associated with the private keys are shown in the list of server certificates in IIS Manager.

    exp_certs_windows_15

  5. Specify the filename, location, PFX export password and click OK:

    exp_certs_windows_16

    A PFX file was exported and can be found in the specified location.

    The certificate import on a new server can be also performed using either Microsoft Management Console or IIS Manager.

Import using MMC.

  1. Add Certificates (Local Computer) snap-in to MMC following the steps described above.
  2. Once added, right-click on the Personal store > All Tasks > Import:

    exp_certs_windows_17

  3. The Certificate Import Wizard will be launched, press Next:

    exp_certs_windows_18

  4. Using the Browse button choose the .pfx file which you want to import on your server, press Next:

    exp_certs_windows_19

  5. Enter the PFX file password. It was specified during creation of the .pfx file.

    You may select Mark this key as exportable to have an opportunity to export the certificate with the private key from this server later. Then click Next:

    exp_certs_windows_20

  6. In the next dialogue window choose Automatically select the certificate store based on the type of certificate. This will allow MMC to place the certificates from the .pfx file to the corresponding folders if the file also contains intermediate certificates. Click Next:

    exp_certs_windows_21

  7. Click Finish. The certificate has been imported to the server and can be now assigned to the website:

    exp_certs_windows_22

Import PFX using IIS Manager

  1. Launch Internet Information Services Manager (Start > Administrative Tools > Internet Information Services (IIS) Manager), and choose the server the certificate should be imported on.
  2. Double-click ‘Server Certificates’ in the center menu.
  3. Click the Import button in the right-side menu:

    exp_certs_windows_23

  4. Locate the PFX file on your machine and specify the password that was used when exporting the certificate. Optionally, you may check Allow this certificate to be exported. Then, click OK:

    exp_certs_windows_24

    Assigning a certificate for a website.

    Once the certificate was imported by any of the methods described above, it will be shown in the list of server certificates in IIS Manager and can be assigned to existing website using IIS.

    You can check more information on how to bind the certificate to a website in IIS in this installation guide.