Skip to content

Instantly share code, notes, and snippets.

@monir-dev
Created October 13, 2019 14:31
Show Gist options
  • Save monir-dev/71f58767118dc74734ead93e7bee6e8e to your computer and use it in GitHub Desktop.
Save monir-dev/71f58767118dc74734ead93e7bee6e8e to your computer and use it in GitHub Desktop.
#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