VMware: Virtualized Intel VT-x/EPT is not supported on this platform (SOLVED)
I had to allow nested virtualization to run an emulator on top of the guest Linux VM in VMware.
I run Windows 11 PRO host on Intel 12 generation CPU machine. Just checking the nested virtualization box in VMware VM config was not enough:

With this box switched on, when trying to run the VM I was getting that error: Virtualized Intel VT-x/EPT is not supported on this platform.
If you experience the same error here is what I did to make it work on my machine:
1. Open Windows Features and check that both Hyper-V and Windows Hypervisor Platform are not checked (OFF)

Some sources state that you might need to disable Windows Sandbox as well, but for me it was not required.
2. Search for “Core Isolation” in Windows search box. Make sure that Memory Integrity is set OFF

3. Open command line terminal (type “cmd” in the search box) as Administrator and run:
msinfo32/system
Click on System Summary and at the right-hand window look for “Virtualization-based Security”

Mine was showing “Running”. “Not enabled” that is displayed at the above screenshot is the desired result which I get after making the changes listed here.
If you are seeing “Running” in the above screenshot it is OK. Just follow the below steps to change it.
4. In the same ‘cmd’ window, run:
bcdedit /enum {current}
and check the status of hypervisor. If it is not showing “off”, run:
bcdedit /set hypervisorlaunchtype off
5. Run Power Shell as an Administrator and enter there:
Disable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
6. Reboot. When rebooting, check that your BIOS is set to support nested virtualization
7. Run again “cmd” and call for
msinfo32/system
it should now say “Virtualization-based Security”: Not Enabled
8. Run your VM with nested virtualization switched on.
It should now work. Enjoy!
References
Some incomplete information is available here
VMware: Virtualized Intel VT-x/EPT is not supported on this platform (SOLVED) Read More »