Proxmox on Hyper-V: No Support for hardware-accelerated KVM virtualization detected.

Jibedaddy

New Member
Feb 26, 2025
1
0
1
After quite some searching and using this query ("how to expose kvm vt in microsoft hyper-v"), found the following answer which resolved the issue on my Windows 11 machine on which I had Hyper-V enabled and wanted to create a Proxmox VM to play with.

Correct resolution:

To expose KVM VT (virtualization technology) in Microsoft Hyper-V, you need to enable "nested virtualization" on the virtual machine by using the PowerShell command "Set-VMProcessor -VMName <VMName> -ExposeVirtualizationExtensions $true" while the VM is powered off; this essentially allows the guest VM to access the virtualization extensions and run a hypervisor like KVM within it.
Reference:
https://learn.microsoft.com/en-us/v...ndows/user-guide/enable-nested-virtualization

Hope this helps y'all. :)