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

    • Interesting share -- however it does not make sense: Email messages get stored somewhere, so how is Delta Chat "based on email" and decentralized without actually storing anything? By Web3 standard practices, the various Relays would require dedicated storage to make messages available to the recipients (like a large series of message queue channels, akin to racks of traditional post office boxes)... and Contacts must be two-way confirmed in order for encryption keys to be exchanged (ostensibly every key-pair is uniquely bound between sender and recipient) and the Relays would preserve the public keys in order to facilitate message carriage... or every device stores all sorts of keys and contact info. All of this to say, decentralized messaging is like running Bluesky nodes except instead of discovering/browsing public feeds by various posters (at the given node) these Delta Chats would be relaying encrypted messages (via Relays) that only trusted recipients would have the appropriate decryption key (their own private key) to read it. But this doesn't solve the "it's like email" sales pitch. The only way it's like email is that there's encrypted binary stuff being transported from your app into the federated ether of Delta Chat Relays for others to decrypt (hopefully only the intended recipient)... but outside of this federated relays framework, it is absolutely nothing like email.
    • Hasleo Backup Suite Free 5.8.2.2 by Razvan Serea Hasleo Backup Suite Free is a free Windows backup and restore software, which embeds backup, restore and cloning features, it is designed for Windows operating system users and can be used on both Windows PCs and Servers. The backup and restore feature of Hasleo Backup Suite can help you back up and restore the Windows operating systems, disks, partitions and files (folders) to protect the security of your Windows operating system and personal data. The cloning feature of Hasleo Backup Suite can help you migrate Windows to another disk, or easily upgrade a disk to an SSD or a larger capacity disk. System Backup & Restore / Disk/Partition Backup & Restore Backup Windows operating system and boot-related partitions, including user settings, drivers and applications installed in these partitions, which ensures that you can quickly restore your Windows operating system once it crashes. Viruses, power failure, or other unknown reasons may cause data loss, so it is a good habit to regularly back up the drive that stores important files, you can at least recover lost files from the backup image files in the event of a disaster. System Clone / Disk Clone / Partition Clone Migrate the Windows operating system from one disk to another SSD or larger disk without reinstalling Windows, applications and drivers. Clone entire disk to another disk and ensure that the contents of the source disk and the destination disk are exactly the same. Clone a partition completely to the specified location on the current disk or another disk and ensure that the data will not be changed. File Backup & Restore Back up specified files(folders) instead of the entire drive to another location to protect your data, so you can quickly restore files(folders) from the backup image files when needed. Incremental/Differential/Full Backup Different backup modes are supported, you can flexibly choose data protection schemes, which can improve backup performance and save storage space while ensuring data security. Delta Restore Delta restore uses advanced delta detection technology to check the changed blocks on the destination drive and restore only the changed blocks, so it has a faster restore speed than the traditional full restore. Universal Restore This feature can help us restore the Windows operating system to computers with different hardware and ensure that Windows can work normally without any hardware compatibility issues. Hasleo Backup Suite 5.8.2.2 changelog: Improved creation of bootable media that supports the UEFI CA 2023 certificate Fixed an issue that caused system restore to fail Fixed an issue where file backup could not list drives under Windows ARM64 Fixed an issue that caused backup of MacOS files/folders shared via Samba to fail Fixed an issue that caused "Smart Backup" to not work properly Fixed other minor bugs Download: Hasleo Backup Suite 5.8.2.2 | 39.7 MB (Freeware) Links: Hasleo Backup Suite Website | Hasleo Backup Suite Guide | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Shotcut 26.6.25 by Razvan Serea Shotcut is a free, open source, cross-platform video editor for Windows, Mac and Linux. Major features include support for a wide range of formats; no import required meaning native timeline editing; Blackmagic Design support for input and preview monitoring; and resolution support to 4k. Editing Features Trimming on source clip player or timeline with ripple option Append, insert, overwrite, lift, and ripple delete editing on the timeline 3-point editing Hide, mute, and lock track controls Multitrack timeline with thumbnails and waveforms Unlimited undo and redo for playlist edits including a history view Create, play, edit, save, load, encode, and stream MLT XML projects (with auto-save) Save and load trimmed clip as MLT XML file Load and play complex MLT XML file as a clip Drag-n-drop files from file manager Scrubbing and transport control Video Effects Video compositing across video tracks HTML5 (sans audio and video) as video source and filters 3-way (shadows, mids, highlights) color wheels for color correction and grading Eye dropper tool to pick neutral color for white balancing Deinterlacing Auto-rotate Fade in/out audio and fade video from and to black with easy-to-use fader controls on timeline Video wipe transitions: bar, barn door, box, clock (radial), diagonal, iris, matrix, and custom gradient image Track compositing/blending modes: Over, Add, Saturate, Multiply, Screen, Overlay, Darken, Dodge, Burn, Hard Light, Soft Light, Difference, Exclusion, HSL Hue, HSL Saturation, HSL Color, HSL Luminosity. Video Filters: Alpha Channel: Adjust, Alpha Channel: View, Blur, Brightness, Chroma Key: Advanced, Chroma Key: Simple, Contrast, Color Grading, Crop, Diffusion, Glow, Invert Colors, Key Spill: Advanced, Key Spill: Simple, Mirror, Old Film: Dust, Old Film: Grain, Old Film: Projector, Old Film: Scratches, Old Film: Technocolor, Opacity, Rotate, Rutt-Etra-Izer, Saturation, Sepia Tone, Sharpen, Size and Position, Stabilize, Text, Vignette, Wave, White Balance Speed effect for audio/video clips Hardware Support Blackmagic Design SDI and HDMI for input and preview monitoring Leap Motion for jog/shuttle control Webcam capture Audio capture to system audio card Capture (record) SDI, HDMI, webcam (V4L2), JACK audio, PulseAudio, IP stream, X11 screen, and Windows DirectShow devices Multi-core parallel image processing (when not using GPU and frame-dropping is disabled) DeckLink SDI keyer output OpenGL GPU-based image processing with 16-bit floating point linear per color component Shotcut 26.6.25 changelog highlights: Added basic support for OpenFX (OFX) video plugins. Added VST2 audio plugin support for third-party audio effects. Added Safe Mode to launch Shotcut without external plugins for easier crash recovery. Added an experimental plugin UI generator (--experimental) for supported filters and plugins. Added a new Noise Reduction audio filter powered by RNNoise. Added HDR export support. Added PQ HDR metadata options for HDR exports. Added the ability to view HDR previews in full-screen mode. Improved Vulkan display support on Linux. Fixed DeckLink and UltraStudio external monitor deadlocks. Fixed Opus audio export warnings related to frame_duration. Improved plugin discovery and compatibility for supported OpenFX and VST2 plugins. Expanded command-line options for testing experimental features. Improved overall application stability when using third-party plugins. Enhanced HDR editing and preview workflow. Included numerous bug fixes, performance optimizations, and general stability improvements throughout the application.[full release notes] Download: Shotcut 26.6.25 | Portable | ARM64 ~200.0 MB (Open Source) View: Shotcut Home Page | Other Operating Systems | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • I looked into a few echo devices to find they were riddled with adverts over time. No thanks ill stick to my homeassistant, smart plugs, smart bulbs and cameras that don't cost me a monthly fee and are cheaper to buy. No adverts also.
    • Brave Browser 1.91.180 is out.
  • Recent Achievements

    • Week One Done
      Woland13 earned a badge
      Week One Done
    • One Month Later
      Woland13 earned a badge
      One Month Later
    • 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
  • Popular Contributors

    1. 1
      +primortal
      504
    2. 2
      +Edouard
      229
    3. 3
      PsYcHoKiLLa
      163
    4. 4
      Steven P.
      77
    5. 5
      FloatingFatMan
      71
  • Tell a friend

    Love Neowin? Tell a friend!