Skip to content

Instantly share code, notes, and snippets.

@wictorwilen
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wictorwilen/d3c082852a81b051ca07 to your computer and use it in GitHub Desktop.
Save wictorwilen/d3c082852a81b051ca07 to your computer and use it in GitHub Desktop.
Create a non Hyper-V boot entry for Windows 8
# 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