Android SDK's Intel HAXM disabled after installing Hyper V

后端 未结 5 1464
自闭症患者
自闭症患者 2020-12-13 07:48

I\'m developing a suite of mobile apps - specifically Windows Store/Mobile 8 and Android.

Having installed VS2012 and then Monodroid, I was then able to start x86 An

5条回答
  •  独厮守ぢ
    2020-12-13 08:26

    I was in your same case that needed to support Hyper-V and Intel HAXM. Disabling and enabling the feature and then restarting was overkill so I found an alternative solution.

    You can create 2 boot entries, one for Windows with the regular configuration of Hyper-V enabled and another one with Hyper-V disabled. I logged in with the second one (Hyper-V disabled) and I was able to install Intel HAXM.

    To accomplish this you need:

    1. Open a command prompt as Administrator
    2. Enter the command: bcdedit /copy {current} /d "Windows 8 - No Hyper-V"
    3. This will output an id with the format {GUID} that you need to copy it to use it in the next command.
    4. Enter the command: bcdedit /set { copied GUID of step 3 } hypervisorlaunchtype off

    More details in this post.

提交回复
热议问题