Enable TPM Emulation In HyperV
Colapsar
X
-
En mi caso el Host no admitía TPM al carecer físicamente. Por tanto Hyper-V señalizaba en gris ese apartado.
Con Powershell lo active.:
In this article, we will show you how to enable guest Virtual Secure Mode in Windows Server Hyper-V.
Aunque es para un Server, me valió para un W10 Enterprise.
Código:Invoke-Command -VMName (Get-VM).Name -Credential (Get-Credential ~\Administrator) -ScriptBlock { #Enable VirtualizationBasedSecurity (VBS) reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard " /v "EnableVirtualizationBasedSecurity" /t REG_DWORD /d 1 /f #Enable VBS and require Secure boot only without DMA Protections reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard " /v "RequirePlatformSecurityFeatures" /t REG_DWORD /d 1 /f #Enable Credential Guard without lock reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Contr ol\LSA" /v "LsaCfgFlags" /t REG_DWORD /d 2 /f Restart-Computer -Force }
-
Comentario