Reputation: 31
I am developing an application in Xamarin Forms
and I am using Visual Studio 2017. When I try launching the emulator, Android_Accelerated_x86_Oreo
, from my server, it says,
Android_Accelerated_x86_Oreo on Hyper-V needs Windows Hypervisor Platform installed.
I checked the features for the server and Hyper-v
is enabled.
How this can be fixed?
Upvotes: 3
Views: 5011
Reputation: 11
Enter the following command in powershell
in order to activate the missing windows feature:
Enable-WindowsOptionalFeature -FeatureName "HypervisorPlatform" -Online
Upvotes: 1
Reputation: 183
Run this command in the command line as administrator:
Dism /Online /Enable-Feature:HypervisorPlatform
It will enable the Windows Hypervisor Platform on the windows 2019.
Upvotes: 11