Skip to content

Instantly share code, notes, and snippets.

@cherts
Last active October 20, 2019 10:22
Show Gist options
  • Select an option

  • Save cherts/9ac9c93481f94a88fbd5627c54e85e06 to your computer and use it in GitHub Desktop.

Select an option

Save cherts/9ac9c93481f94a88fbd5627c54e85e06 to your computer and use it in GitHub Desktop.
Adding new boot entry in Windows 10 boot menu (Windows 10 without Hyper-V)
rem Copy curent boot config to "Windows 10 without Hyper-V"
bcdedit /copy {current} /d "Windows 10 without Hyper-V"
rem Edit new config, set disable hyper-v support
bcdedit /set {cbd611ae-f320-11e9-9800-b8aeedea1201} hypervisorlaunchtype off
rem Set new config is default
bcdedit /default {cbd611ae-f320-11e9-9800-b8aeedea1201}
rem Set timeout
bcdedit /timeout 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment