Original Message:
Sent: Feb 17, 2025 06:31 AM
From: Alvaro Alvarez
Subject: VMware Workstation 17 pro "Virtualized Intel VT-x/EPT is not supported on this platform"
Hello! Yes, after a lot of searching, because the same thing happened to me, the problem is basically Windows, with the latest update it doesn't want that to be enabled. I'll get it now.
Paste this with administrator permissions in a powershell
# Disable VBS and Device Guard
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v RequireMicrosoftSignedBootChain /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\LSA" /v LsaCfgFlags /t REG_DWORD /d 0 /f
# Disable App Control for Business
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppHVSI" /v HypervisorEnforcedCodeIntegrity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DeviceGuard" /v RequirePlatformSecurityFeatures /t REG_DWORD /d 0 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CI\Config" /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f
# Disable Hyper-V completely
bcdedit /set hypervisorlaunchtype off
dism /online /disable-feature /featurename:Microsoft-hyper-v-all /norestart
dism /online /disable-feature /featurename:WindowsHypervisorPlatform /norestart
dism /online /disable-feature /featurename:VirtualMachinePlatform /norestart
# Reboot the system
shutdown /r /t 0
🚀 This will force VBS, Credential Guard, Hyper-V and App Control for Business to be disabled.
If it doesn't work, paste this after restarting
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AppHVSI" -Name "HypervisorEnforcedCodeIntegrity" -Value 0
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\CI\Config" -Name "VulnerableDriverBlocklistEnable" -Value 0
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\DeviceGuard" -Name "EnableVirtualizationBasedSecurity" -Value 0
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\DeviceGuard" -Name "RequirePlatformSecurityFeatures" -Value 0
gpupdate /force
shutdown /r /t 0
Original Message:
Sent: Feb 02, 2025 12:11 AM
From: Kenny Tan
Subject: VMware Workstation 17 pro "Virtualized Intel VT-x/EPT is not supported on this platform"
Hey everyone,
I'm having trouble powering on my Kali Linux VM in VMware Workstation. When I try to start the VM, I get this error:
Virtualized Intel VT-x/EPT is not supported on this platform. Continue without virtualized Intel VT-x/EPT? VMware Workstation does not support nested virtualization on this host. Module 'HV' power on failed. Failed to start the virtual machine.
I specifically need to enable Virtualized Intel VT-x/EPT in the VM settings, as my current setup (an Intel i7 12th Gen system running Windows 11 Pro 24H2 with VMware Workstation 17 Pro, version 17.6.2 build-24409262) should support it.
Here's what I've already done:
UEFI Settings: Verified that VT-d and Intel VMX (virtualization) are enabled.
Host Settings: Confirmed virtualization is enabled in Task Manager.
Memory Integrity: Turned off Memory Integrity.
Disabled Conflicting Features: I've disabled Hyper-V, Virtual Machine Platform, Windows Hypervisor Platform, and Windows Subsystem for Linux. I also ran:
bcdedit /set hypervisorlaunchtype off
dism /online /disable-feature /featurename:Microsoft-hyper-v-all
Disabled Memory Integrity
powershell.exe Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Hypervisor
powershell.exe Disable-WindowsOptionalFeature -Online -FeatureName "Microsoft-Hyper-V"
bcdedit /set vsmlaunchtype off
Despite these efforts, the error persists.
My question is: How can I enable Virtualized Intel VT-x/EPT in the VM settings, or is there a workaround to get nested virtualization working on this host? Has anyone encountered this issue or found a solution?
Any help or pointers would be greatly appreciated!
Thanks in advance!