Last active
August 29, 2015 14:13
-
-
Save wictorwilen/d3c082852a81b051ca07 to your computer and use it in GitHub Desktop.
Create a non Hyper-V boot entry for Windows 8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copy the current entry to a new (called No Hyper-V) | |
bcdedit /copy {current} /d "No Hyper-V" | |
# Note the Id from the command result above | |
bcdedit /set <ID> hypervisorlaunchtype off | |
# Set the default one to the newly created entry | |
bcdedit /default /ID <ID> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment