Disabling power throttling could help resolve the problem. You can disable power throttling for VMware Workstation by running a PowerShell command.
powercfg /powerthrottling disable /path "C:\Program Files (x86)\VMware\VMware Workstation\vmware.exe"
Here's what each part of the command does:
- powercfg: This is the command-line tool that manages power settings in Windows.
- /powerthrottling: This option allows you to enable or disable power throttling, which is a feature in Windows 10 that reduces the CPU usage of inactive or background processes to save energy.
- disable: This parameter disables power throttling.
- /path: This option specifies the path to the executable file for which power throttling should be disabled.
- "C:\Program Files (x86)\VMware\VMware Workstation\vmware.exe": This is the path to the VMware Workstation executable file.