Windowsserverdocs: Certificate installation complement

Created on 12 Jul 2018  Â·  1Comment  Â·  Source: MicrosoftDocs/windowsserverdocs

It is straight forward for a self-signed certificate so Noting to add. BUT, as you certainly know, many brothers do not accept self-signed certificate. So please add this information to add a SHA2 certificate with a publicly authorized CA:

  • With MMC
    -- Choose Local Computer store
    -- Select Personal
    --- Import certificate with a Private Key and check "Mark Key as exportable"

--- Go Detail, COPY Thumbprint and PASTE it to a DOS/PowerShell command SHELL, DO NOT USE Notepad nor PS-ISE (You can use any other method who can remove "illegal characters" in the thumbprint copied from the GUI)
--- Remove Spaces and redo a COPY
Then PASTE in the Windows Admin Center installer when asking for certificate thumbprint.


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Pri2 WAC assigned-to-author windows-server-thresholprod

Most helpful comment

For those who would rather use PowerShell, just do

$pfxpassword = Read-Host -AsSecureString
$cert = Import-PfxCertificate \\path\to\cert.pfx -Password $pfxpassword -CertStoreLocation Cert:\LocalMachine\my
$cert.Thumbprint | Set-clipboard

Then the certificate thumbprint is in your clipboard for when you use the installer

>All comments

For those who would rather use PowerShell, just do

$pfxpassword = Read-Host -AsSecureString
$cert = Import-PfxCertificate \\path\to\cert.pfx -Password $pfxpassword -CertStoreLocation Cert:\LocalMachine\my
$cert.Thumbprint | Set-clipboard

Then the certificate thumbprint is in your clipboard for when you use the installer

Was this page helpful?
0 / 5 - 0 ratings

Related issues

alanmreagan picture alanmreagan  Â·  5Comments

carlosmayol picture carlosmayol  Â·  4Comments

yoshihirok picture yoshihirok  Â·  4Comments

chall3ng3r picture chall3ng3r  Â·  4Comments

ElimAdmin picture ElimAdmin  Â·  3Comments