Posted On July 9, 2020

Hyper-V UEFI Error: The Image’s Hash and Certificate are Not Allowed (DB)

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Hyper-V UEFI Error: The Image’s Hash and Certificate are Not Allowed (DB)
Symptom:

Cause:

Secure Boot has been enabled on this generation 2 guest virtual machine. This occurs when a VM has been cloned from a VHDX file using default options of ‘gen2’ para-virtual hardware.

Resolution:

Edit the VM’s setting to remove the check-mark next to ‘Enable secure boot’

Alternatively, run this PowerShell command as Admininistrator:

Set-VMFirmware -VMName $newVmName -DisableSecureBoot

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Clone VMWare Virtual Machine using CLI

1. SSH into the ESXi host to perform VM cloning via Command Line Interface (CLI)…

PowerShell: Find Hyper-V Host by Guest VM Name

# findVmHostByGuestName.ps1 $vmName='TESTVM' function findVmHostByGuestName($vmName){ try{ Import-Module Hyper-V Import-Module FailoverClusters $allHyperVHosts={(Get-ClusterNode | Where { $_.State…

Hyper-V Guest VM CPU Compatibility Feature Down Side

Symptom: guest VM could not install applications that require'SSE4.2 and POPCNT instruction sets' Cause: The…