Hello George Wilso,
When a motherboard replacement introduces a new TPM 2.0 chip, the host’s Endorsement Key and measured boot values no longer match what the Host Guardian Service has stored, so attestation fails and Shielded VMs cannot boot. The first step is to extract the new TPM EK certificate from the serviced host. You can run Get-PlatformIdentifier -Name <HostName> or Get-HgsAttestationTpmHost locally, which will return the EK public key and certificate chain. This output is what you need to register with HGS.
Next, you must re‑register the host against HGS with the updated TPM baseline. Use Add-HgsAttestationTpmHost -Name <HostName> -Path <EKCertFile> to add the new EK identity, then update the attestation policy with Set-HgsAttestationTpmPolicy so that the old baseline is invalidated and the new one is trusted. Once the policy is committed, the Guarded Host will pass attestation again and Shielded VMs will resume normal boot. Be sure to confirm that the host is listed as compliant with Get-HgsAttestationReport before returning it to production.
If my answer is useful for you, please hit Accept the answer to support me.
Thank you,
HL.