Created
October 13, 2019 14:31
-
-
Save monir-dev/71f58767118dc74734ead93e7bee6e8e to your computer and use it in GitHub Desktop.
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
#disable automatic repair on Windows 10 | |
------------------------------------------ | |
Here is a step-by-step guide on how to stop automatic repair on Windows 10: | |
Open Start | |
In the list of programs, search for Command Prompt, right- click it and choose Run as Administrator. | |
Type the command “bcdedit” and press the Enter button. | |
Under the Windows boot loaders section, look for the identifier and recoveryenabled values. They should read: | |
identifier: {current} | |
recoveryenabled: yes | |
To disable automatic repair input the following command followed by pressing the Enter key: bcdedit /set {current} recoveryenabled no | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment