Advertisement
Kabbalah

VirtualBox And Hyper-V in same Machine

Aug 18th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Open an elevated prompt and type:
  2.  
  3. bcdedit / copy {current} / d "Windows <Your Version> (with Hyper-V)"
  4.  
  5. This creates a new boot option identical to the current configuration. So we can keep Hyper-V turned on in this new option while turning off Hyper-V at the default boot option.
  6. ____________________________________________________________________
  7. Now, to turn off Hyper-V at the default Windows boot option, type:
  8.  
  9. bcdedit / set {current} hypervisorlaunchtype off
  10.  
  11. This turns off the hypervisor on the default Windows boot option.
  12. ____________________________________________________________________
  13. Finally, we need Windows to wait a little time for each boot to allow time to select which option we want. For a 3 second timeout on each boot (so you have time to select an option), type:
  14.  
  15. bcdedit / timeout 3
  16.  
  17. With that we set the Windows boot menu timeout
  18.  
  19.  
  20. Commands:
  21.  
  22. bcdedit /set {current} description "Windows 10 Hyper-V"
  23. bcdedit /copy {current} /d "Windows 10 VirtualBox"
  24. bcdedit /set {ID} hypervisorlaunchtype off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement