Hi,
Pretty much always the same issue..
Check your vmware.log file and look for "monitor mode"
monitor mode ULM
or
monitor mode CPL0
Monitor Mode ULM means that you are running in User Level Mode and thus Workstation cannot use VMware's hypervisor, but instead it has to go through the Hypervisor API that Microsoft provides.
The option via the Microsoft Hypervisor API currently does not provide Virtualized Intel VT-x/EPT.
Only when Monitor mode returns CPL0 it is running in ring 0, a.k.a. no hypervisor.
Monitor mode CPL0 (Current Privilege Level 0) is required for VMware Workstation to be able to use their own hypervisor.
See also:
https://communities.vmware.com/t5/VMware-Workstation-Pro/MikroTik-RouterOS-boot-speed-is-drastically-slow/m-p/2291457/highlight/true#M137161
In order to turn off ULM/Hyper-V mode, run the following command at the host in windows command-line with Administrator privileges:
bcdedit /set hypervisorlaunchtype off
Reboot the system to activate your changes.
If you want to go back to Hyper-V mode again, then you can enable it like this:
bcdedit /set hypervisorlaunchtype auto
See also:
Note that you also might have to disable Memory Integrity.
Windows Security -> Device Security -> Core Isolation details
Don't forget to reboot the host after making any of these changes.
--
Wil