After upgrade to higher version, the certificate is missing from the Service Account desktop.
NA
Sometimes there is a delay about few hours for the certificate to appear on the service account desktop. You can create new certificate from Powershell cmdlet.
To create certificate:
$certname = "{ArchiveManager}"
$cert = New-SelfSignedCertificate -Subject "CN=$certname" -CertStoreLocation "Cert:\CurrentUser\My" -KeyExportPolicy Exportable -KeySpec Signature -KeyLength 2048 -KeyAlgorithm RSA -HashAlgorithm SHA256
To export certificate:
Export-Certificate -Cert $cert -FilePath "C:\Users\ArchiveMgr_Service\Desktop\$certname.cer" ## Specify your preferred location