Install the DigiCert trusted root certificate
- Last UpdatedAug 07, 2024
You must install the DigiCert Global Root certificate on all machines that communicate with CONNECT. Follow the procedure below to import the certificates from Windows Update into the local machine’s Trusted Root Certification Authorities store.
To import the Windows Update certificates
-
On a machine with internet access, sign in as a domain administrator.
-
Create a new temporary directory to store the root certificates file (for example, C:\CertFromWU).
-
Start an elevated PowerShell session.
-
Execute the following command to generate the .sst file:
certutil.exe -generateSSTFromWU C:\CertFromWU\roots.sst
-
On the machine where you want to install the certificates, sign in as a domain administrator.
-
Create a new temporary directory to store the root certificates file (for example, C:\CertFromWU).
-
Copy the roots.sst file generated in step 4 into the temporary directory on the target machine.
-
Start an elevated PowerShell session.
-
Execute the following commands to import the certificates from the .sst file into the certificate store:
$sstStore = Get-ChildItem -Path C:\CertFromWU\roots.sst
$sstStore | Import-Certificate -CertStoreLocation Cert:\LocalMachine\Root
-
Execute the following commands to retrieve the list of DigiCert certificates and verify that the DigiCert Global Root CA root certificate was successfully installed:
$certs = Get-ChildItem -Path Cert:\LocalMachine\Root
$digicertCerts = $certs | Where-Object { $_.Issuer -like "*Digicert*" }
$digicertCerts | ForEach-Object { $_.Subject }