Last active
October 20, 2019 10:22
-
-
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)
This file contains hidden or 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
| 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