TIANLE YE
TIANLE YE

Reputation: 31

Xamarin Emulator on Windows Server 2019

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

Answers (2)

Jimmy
Jimmy

Reputation: 11

Enter the following command in powershell in order to activate the missing windows feature:

Enable-WindowsOptionalFeature -FeatureName "HypervisorPlatform" -Online

Upvotes: 1

Mehdi Isaloo
Mehdi Isaloo

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

Related Questions