There is no Windows Hypervisor Platform check box in Windows Components

I need to run an android emulator on Windows with an AMD processor, I did everything according to the instructions, but I could not find the necessary checkbox "Windows Hypervisor Platform" anywhere, I attach the picture

Windows Hypervisor Platform

As I understand it, this is not the same as in the screenshot below, because these are the options I had selected from the very beginning and it does not help

Hyper-v

I only have options like in the second screenshot, no " Windows Hypervisor Platform" or something similar is not there. The android emulator accordingly returns the error

emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure Windows Hypervisor Platform (WHPX) is properly installed and usable.

Where to find and how to find this missing option? Here is the full list of what I see: https://imgur.com/N28wZnq

Author: Edward Starlight, 2018-10-22

1 answers

It is called: Windows Low-level Shell Platform.

To check whether it is enabled in PowerShell:

Get-WindowsOptionalFeature -FeatureName Microsoft-Hyper-V-All -Online

Or:

Get-WindowsOptionalFeature -FeatureName HypervisorPlatform -Online 

(here you can just see the DisplayName)

 3
Author: Eugene Balabuev, 2019-02-16 13:16:59