Continuing my voyage of obscure-error-discovery around Sitecore 9, this week SIF has been putting a lot of red into console windows for me. I'm not sure how many people will have this scenario, but if you have multiple people who all need to install their own Sitecore 9 instance onto one machine, this may be of interest:
The first step in the SIF process is to generate the certificate used to communicate with xConnect:
#install client certificate for xconnect $certParams = @{ Path = "$PSScriptRoot\xconnect-createcert.json" CertificateName = "$prefix.xconnect_client" } Install-SitecoreConfiguration @certParams -Verbose
But that bombed out for me. The logs included:
[---------------------------------------- CreateSignedCert : NewSignedCertificate ------------------------------------] VERBOSE: Resolving ConfigFunction extension 'GetCertificate' VERBOSE: Resolved 'Invoke-GetCertificateConfigFunction' VERBOSE: Invoke-GetCertificateConfigFunction VERBOSE: Id: DO_NOT_TRUST_SitecoreRootCert VERBOSE: CertStorePath: cert:\LocalMachine\Root VERBOSE: Found Cert with thumbprint: 763C0AA20CB3A8038928AC09CDD6DF2F7CFB2EBA 27A5D8877F35151B0DA7A27B8BDFA44B0006CB47 ********************** Command start time: 20180710101333 ********************** PS>TerminatingError(New-SignedCertificate): "Cannot process argument transformation on parameter 'Signer'. Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Security.Cryptography.X509Certificates.X509Certificate2"." Install-SitecoreConfiguration : Cannot process argument transformation on parameter 'Signer'. Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Security.Cryptography.X509Certificates.X509Certificate2". At C:\Configs\HabitatHome\s9install-web.ps1:19 char:1 + Install-SitecoreConfiguration @certParams -Verbose + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Install-SitecoreConfiguration Install-SitecoreConfiguration : Cannot process argument transformation on parameter 'Signer'. Cannot convert the "System.Object[]" value of type "System.Object[]" to type "System.Security.Cryptography.X509Certificates.X509Certificate2". At C:\Configs\HabitatHome\s9install-web.ps1:19 char:1 + Install-SitecoreConfiguration @certParams -Verbose + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Install-SitecoreConfiguration
You can see this in the log output, because there are two cert thumbprints listed:
VERBOSE: Found Cert with thumbprint: 763C0AA20CB3A8038928AC09CDD6DF2F7CFB2EBA 27A5D8877F35151B0DA7A27B8BDFA44B0006CB47
Following the comments under the accepted answer, I deleted the "newer" of the two certificates, and tried to work out what was going on. The SIF script had created a new version of the "DO_NOT_TRUST_SitecoreRootCert" certificate – which didn't entirely make sense to me. That should have already existed, since there was already an instance of Sitecore running happily on the machine. And looking at the certificate store for the local machine, it was indeed there:
Seeing that, the first idea that popped into my head looking at this was "ah – perhaps that needs to be in my store as well?" so I copied the root cert from the machine store to my store. That got me a different, and equally obscure error:
For the benefit of Google, the error this time was:
[---------------------------------------- CreateSignedCert : NewSignedCertificate ------------------------------------] VERBOSE: Resolving ConfigFunction extension 'GetCertificate' VERBOSE: Resolved 'Invoke-GetCertificateConfigFunction' VERBOSE: Invoke-GetCertificateConfigFunction VERBOSE: Id: DO_NOT_TRUST_SitecoreRootCert VERBOSE: CertStorePath: cert:\LocalMachine\Root VERBOSE: Found Cert with thumbprint: 27A5D8877F35151B0DA7A27B8BDFA44B0006CB47 VERBOSE: Performing the operation "New-SignedCertificate: New signed certificate for HabitatHome.xconnect_client" on target "C:\Certs". VERBOSE: Searching certificates in cert:\LocalMachine\My for Name HabitatHome.xconnect_client VERBOSE: Failed to find certificate with Name HabitatHome.xconnect_client VERBOSE: New-SignedCertificate: Create a signed certificate for 'HabitatHome.xconnect_client' VERBOSE: New-SignedCertificate: Using PKI parameters for Windows Server 2016 and Windows 10 ********************** Command start time: 20180710102049 ********************** PS>TerminatingError(New-SelfSignedCertificate): "The certificate does not have a property that references a private key. 0x8009200a (-2146885622 CRYPT_E_UNEXPECTED_MSG_TYPE) CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND)" >> TerminatingError(New-SelfSignedCertificate): "The certificate does not have a property that references a private key. 0x8009200a (-2146885622 CRYPT_E_UNEXPECTED_MSG_TYPE) CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND)" Install-SitecoreConfiguration : The certificate does not have a property that references a private key. 0x8009200a (-2146885622 CRYPT_E_UNEXPECTED_MSG_TYPE) CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND) At C:\Configs\HabitatHome\s9install-web.ps1:19 char:1 + Install-SitecoreConfiguration @certParams -Verbose + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Install-SitecoreConfiguration Install-SitecoreConfiguration : The certificate does not have a property that references a private key. 0x8009200a (-2146885622 CRYPT_E_UNEXPECTED_MSG_TYPE) CertEnroll::CSignerCertificate::Initialize: Cannot find object or property. 0x80092004 (-2146885628 CRYPT_E_NOT_FOUND) At C:\Configs\HabitatHome\s9install-web.ps1:19 char:1 + Install-SitecoreConfiguration @certParams -Verbose + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Install-SitecoreConfiguration
At least this time it's only reporting a single certificate thumbprint – so it's a step forward at least. Now, the important message this time seems to be "The certificate does not have a property that references a private key" – and if you go and look at the details of the root certificate in the trusted store, you'll see that it does not have a private key attached:
That makes some sense – you can't use the "root" certificate to sign anything if you don't have its private key. Signing relies on the private part of a key for its security.
Checking with the person who'd done the first SIF install on this machine, their copy of this certificate did have a private key.
You can get that by asking the user who did the install first to export it for you, from their personal certificate store:
If they export the certificate including the key, and you import it into your store, then the SIF script will complete successfully.
Now I know where the error is coming from, I guess there are some other approaches that could be used to solve this. Whether these are relevant to you probably depends on your precise working patterns with multiple installs: