VT-x/AMD-V hardware acceleration is not available on Windows 10 Professional


Recommended Posts

Hi everyone.  I have VirtualBox installed on my machine running the 64bit preview of Windows 10.  This was working perfectly fine until recently I upgraded to Windows 10 Pro.  Now, I gett a message that VT-x/AMD-V hardware acceleration is not available on the machine whenever I try to open my Windows 10 Virtual Machine.

 

I also cannot install the Android emulator for Visual Studio.  Though I am not provided any useful error message, I assume this is the issue there as well.

 

I checked in the BIOS, and it is enabled.  Does anyone have any other suggestions or ideas to resolve this?  I would like to get both of the above issues resolved and would have expected the Pro version of Windows 10 would be more feature rich, not less.

 

Thanks for your help.

Check and see if Hyper-V is installed.  If it is, remove it.

 

Verify latest version of Virtual Box.  I know there were problems with Pre-View, but I do not remember much of an uproar after it went to release a year ago.

 

Hyper-V jumped in my brain first.  :)

  • Like 2

Dumb question ...

 

Does it show on CPU-Z?

Capture.JPG

 

Edit:  what @Clirionsaid. :)  Control Panel > Programs > "Turn Windows features on or off" > Uncheck Hyper-V if checked

...or you can just type "Windows fea..." and it should pop up in the start menu.

 

Thank you everyone for your responses.  I do have Hyper-V installed and running.  I didn't realize this was an issue, is it a common conflict?
 

I will try that now and will post back.  Thank you for your help.

2 minutes ago, M_Lyons10 said:

Thank you everyone for your responses.  I do have Hyper-V installed and running.  I didn't realize this was an issue, is it a common conflict?
 

I will try that now and will post back.  Thank you for your help.

Yes very common. Hyper visors are greedy and don't like to share so they conflict. 

  • Like 3
23 minutes ago, adrynalyne said:

Yes very common. Hyper visors are greedy and don't like to share so they conflict. 

pretty much this.  Hyper-V locks exclusively the virtualization of the CPU and doesn't share.  Hyper-V is considered a Type 1 (i.e. native) hypervisor and takes control of VT-x (so VB doesn't see it)... while VB is a Type 2 (hosted) and relinquishes VT-x when it's done.  I believe you can still run 32-bit guests in VB without needing VT-x (maybe someone can confirm). 

3 hours ago, M_Lyons10 said:

Thank you everyone for your responses.  I do have Hyper-V installed and running.  I didn't realize this was an issue, is it a common conflict?
 

I will try that now and will post back.  Thank you for your help.

This is expected... For a bit more technical detail... Hyper-V is a Type-1 Hypervisor (meaning it runs against the bare metal and everything else runs on top of it). So if you're using Windows with Hyper-V enabled the Windows OS you're booting on the host is actually a VM running on top of Hyper-V! Hyper-V doesn't currently support nested hypervisors (meaning it can't virtualize VT-x) so it won't allow you to run another type-1 hypervisor in a VM. This is coming in Windows Server 2016 if memory serves me so you will end up having the ability to leave Hyper-V on and install other hypervisors in the future...

Thank you everyone for your help, and for the very informative explanations.  I didn't realize any of that...

Disabling Hyper-V worked for getting VirtualBox running again (Yay!)

 

It did not get the Visual Studio Android Emulator to install, but I'm not all that worried about that at this point.  Interestingly though, attempting to install the Android Emulator re-enabled Hyper-V!  So for anyone that runs into that sort of issue, that's a bit of a vicious circle...  LOL  As I intend to begin Android development through Xamarin, I'll have to find another solution.  Even with Hyper-V the installer fails (Without much useful information), so that probably isn't even the issue.  In fact, I've had problems with a lot of Visual Studio updates / addons, so hopefully they get that improved with the next release.

 

Thanks again everyone for all of your help, I really appreciate it!

  • 1 month later...
On 6/2/2016 at 0:41 PM, M_Lyons10 said:

Thank you everyone for your responses.  I do have Hyper-V installed and running.  I didn't realize this was an issue, is it a common conflict?
 

I will try that now and will post back.  Thank you for your help.

BIG conflict - as Hyper-V is a type 1 hypervisor, it will stomp on any other hypervisor (including VT-x and AMD-V).  While AMD-V and VT-x have niche usages (such as OS X virtualization), you can generally use Hyper-V for anything you can use VT-x or AMD-V for (Android device virtualization, for example).  The Visual Studio Emulator for Android (Visual Studio 2013 or later) leverages Hyper-V (not VT-x or AMD-V) - otherwise, it functions similarly to Genymotion (which it replaced in my own case) which is why migrating to it FROM Genymotion was - to put it simply - "quack soup".

 

Which version of VS are you working with?  I use the current version of Visual Studio Community with all the updates to date (cost - none) and do a maximum install.  I've never had a problem with the web installer, either (either via wired OR wireless connections).

On 6/2/2016 at 4:40 PM, LogicalApex said:

This is expected... For a bit more technical detail... Hyper-V is a Type-1 Hypervisor (meaning it runs against the bare metal and everything else runs on top of it). So if you're using Windows with Hyper-V enabled the Windows OS you're booting on the host is actually a VM running on top of Hyper-V! Hyper-V doesn't currently support nested hypervisors (meaning it can't virtualize VT-x) so it won't allow you to run another type-1 hypervisor in a VM. This is coming in Windows Server 2016 if memory serves me so you will end up having the ability to leave Hyper-V on and install other hypervisors in the future...

It's those niches, Logical  - that is where Oracle and vmWare are living right now.  However, other than that, I actually find Hyper-V preferable to either VirtualBox or vmWare - and, oddly enough, especially for Android device virtualization.

On 6/3/2016 at 7:46 AM, M_Lyons10 said:

Thank you everyone for your help, and for the very informative explanations.  I didn't realize any of that...

Disabling Hyper-V worked for getting VirtualBox running again (Yay!)

 

It did not get the Visual Studio Android Emulator to install, but I'm not all that worried about that at this point.  Interestingly though, attempting to install the Android Emulator re-enabled Hyper-V!  So for anyone that runs into that sort of issue, that's a bit of a vicious circle...  LOL  As I intend to begin Android development through Xamarin, I'll have to find another solution.  Even with Hyper-V the installer fails (Without much useful information), so that probably isn't even the issue.  In fact, I've had problems with a lot of Visual Studio updates / addons, so hopefully they get that improved with the next release.

 

Thanks again everyone for all of your help, I really appreciate it!

Ironically enough, the Visual Studio Android emulator requires Hyper-V ;)

 

7 minutes ago, adrynalyne said:

Ironically enough, the Visual Studio Android emulator requires Hyper-V ;)

 

Kinda makes sense, though - since Hyper-V is standard on the Windows side of things (as has, in fact, been the case since Windows 8/Windows Server 2008R2).

Hyper-V is standard in Windows 10 Pro and Enterprise (and is not an option in either Home or Core); that is no different than Windows 8, either.

Where things got different is below the Core i-series on the Intel side of the street (where CeleronG and PentiumG gained support for Hyper-V, as an upgrade from the VT-x support of the Celeron DC and Pentium DC CPUs they succeeded - yes; this specifically applies to the G3220 and G3258 - two of the CPUs at the floor end of Haswell).  That also explains why G3258 in my own case (the biggest driver for virtualization is development - and mobile development in particular); between G3258, the included Hyper-V in Windows 8.x/10, and Visual Studio Community, you have the entirety of mobile development (except iOS development) at your beck for diddly.

One thing that VirtualBox does (that Hyper-V doesn't do) is auto-configure networking - you have to configure that yourself.  Fortunately, it's not that hard - Hyper-V uses virtual switches - which it DOES initially configure for you.  Each virtual switch corresponds to an existing network interface - therefore, multiple network interfaces equals multiple virtual switches; Baby Pavilion, for example, has two virtual switches; one each for wired Ethernet and wireless.

 

One reason I was rather anxious to replace Genymotion for Android VMs was due to the requirement of HAXM - while HAXM is free, it doesn't boost Android VM performance as much as I'd like.  The Visual Studio Emulator for Android does not use - or require - HAXM; even better, it's faster than Genymotion, and no harder to configure in terms of Android VMs, either.  No HAXM, faster VM performance, and the cost is STILL nada.  (No learning curve either, outside of Hyper-V itself.)

 

Thank you for the additional information and explanation.  This was all very interesting to me, and something I knew virtually nothing about.

I have found that VirtualBox (In my experience) runs smoother, with less of a hit on the Host OS, and with more accurate full screen features.  So, while I have nothing against Hyper-V, I do hope that they make improvements in the future to allow VirtualBox like LogicalApex had mentioned above.

I had the same issue when I installed Visual Studio with Windows Phone emulators. Turning Hyper-V off allowed me to have VT-X/AMD-V back(and the ability to install 64 bit guest OS in VirtualBox), but the Windows Phone emulators will stop working. Just something to keep in mind if you are into Windows Phone development.

  • 4 months later...
On 7/18/2016 at 8:11 AM, barnacles said:

I had the same issue when I installed Visual Studio with Windows Phone emulators. Turning Hyper-V off allowed me to have VT-X/AMD-V back(and the ability to install 64 bit guest OS in VirtualBox), but the Windows Phone emulators will stop working. Just something to keep in mind if you are into Windows Phone development.

Hyper-V supports all the guest OSes that VirtualBox does except two (no support for Apple OSes or OS/2-based OSes, such as eComStation) and supports Windows Phone/Mobile emulation - hence my referring to niches in terms of VB and vmWare.

This topic is now closed to further replies.
  • Posts

    • finally [Taskbar] Taskbar customization just got easier. As we continue to make improvements to the Taskbar experience mentioned last month, we've introduced a dedicated Taskbar Size setting, making it simpler to find, understand, and personalize your ideal taskbar experience.
    • Let me get this straight... It was a web interface for Gmail, so if privacy at Google wasn't concerning enough you'd be going through two companies. And their big feature was the very thing that would make people consider dumping Gmail.
    • Microsoft's fast coding model MAI-Code-1-Flash comes to Copilot Business and Enterprise by Karthik Mudaliar Microsoft’s recently announced MAI-Code-1-Flash model is now generally available to GitHub Copilot Business and Copilot Enterprise customers. With this support, organizations can have more centralized policy controls and billing while finally being able to use Microsoft’s lightweight, first-party coding model. According to GitHub’s announcement, Business and Enterprise plan administrators must enable the MAI-Code-1-Flash policy in Copilot settings before developers can access the model. Microsoft says that MAI-Code-1-Flash is for fast, iterative coding work rather than the most demanding architectural or debugging tasks. GitHub’s official model comparison page says that the model is great for "general-purpose coding and writing," while it excels at fast, accurate code completions and explanations Microsoft introduced MAI-Code-1-Flash on June 2 as part of a broader collection of internally developed MAI models. GitHub subsequently expanded support to Copilot CLI, the Copilot cloud agent, GitHub.com chat, GitHub Mobile, Visual Studio, JetBrains IDEs, Eclipse, and Xcode, but said support for managed Business and Enterprise customers was still on the way. In Microsoft’s own benchmark testing, MAI-Code-1-Flash scored 51.2% on SWE-Bench Pro, compared with 35.2% for Anthropic’s Claude Haiku 4.5. Microsoft also claimed that the model used up to 60% fewer tokens on SWE-Bench Verified. Do note that these are vendor-run results rather than independent measurements. The model is billed at provider list pricing under GitHub’s usage-based system. GitHub currently lists MAI-Code-1-Flash at $0.75 per million input tokens, $0.075 per million cached input tokens, and $4.50 per million output tokens. For organizations, the main incentive to use MAI-Code-1-Flash is likely to be efficiency rather than maximum capability. A smaller model that responds quickly and limits unnecessary output is quite useful for repetitive agent tasks at scale, especially after GitHub Copilot’s move toward usage-based billing. The "Flash" model is recommended for fast work and not necessarily for huge repositories with loads of context. It's better if teams compare their output with other larger models, especially if they're working on security-sensitive changes and complex, multi-file work.
    • yes AND no the "original" or plain/normal Optiplex 7010 won't be getting any more new firmware updates BUT the Optiplex SFF/SFF Plus {small form factor}, Micro/Micro Plus & Tower/Tower Plus 7010 editions DO get new updates such as this new one   and here are similar guides from the Dell web site for Dell systems: https://www.dell.com/support/kbdoc/en-us/000390990/secure-boot-transition-faq https://www.dell.com/support/kbdoc/en-us/000347876/microsoft-2011-secure-boot-certificate-expiration
  • Recent Achievements

    • One Year In
      bernmeister earned a badge
      One Year In
    • Week One Done
      Scoobystu earned a badge
      Week One Done
    • Week One Done
      tuben earned a badge
      Week One Done
    • First Post
      OffsetAbs earned a badge
      First Post
    • Reacting Well
      OffsetAbs earned a badge
      Reacting Well
  • Popular Contributors

    1. 1
      +primortal
      462
    2. 2
      +Edouard
      213
    3. 3
      PsYcHoKiLLa
      157
    4. 4
      Steven P.
      72
    5. 5
      FloatingFatMan
      71
  • Tell a friend

    Love Neowin? Tell a friend!