Windows disable reboot on bsod

Опубликовано:

Автоматическая перезагрузка Windows происходит при возникновении стоп ошибки операционной системы, также называемой синий экран смерти. Однако, если мы заходим проанализировать проблему, не изучая файлы дампов, а посмотрев на саму ошибку и ее код, можно отключить данную автоматическую перезагрузку.

Графический интерфейс
Реестр
Командная строка
При запуске системы
Дополнительные сведения
    БИОС
    Перезагрузка раз в час
    После обновления
    После установки драйвера

Графический интерфейс

Открываем Проводник — кликаем правой кнопкой по Этот компьютерСвойства:

Открываем свойства системы

* также можно зайти в раздел Панель управленияСистема и безопасностьСистема.

В левом меню кликаем по Дополнительные параметры системы:

Открываем дополнительные параметры системы

На вкладке Дополнительно в разделе «Загрузка и восстановление» кликаем по Параметры:

Открываем параметры загрузки и восстановления

В открывшемся окне в разделе «Отказ системы» снимаем галочку Выполнить автоматическую перезагрузку:

Нажимаем OK.

Через реестр

Открываем редактор реестра (команда regedit) и переходим в ветку HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl. Находим ключ AutoReboot и меняем его значение на «0»:

Отключаем автоматическую перезагрузку через реестр

Командная строка

С помощью команды нужно поменять значение ключа в реестре. Делается это так:

reg add «HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl» /v AutoReboot /t REG_DWORD /d 0 /f

Это универсальный метод, который подойдет для любой версии операционной системы Windows.

При загрузке системы (циклическая перезагрузка)

Если система бесконечно перезагружается и не позволяет внести изменения в свои настройки, необходимо отключить автоматическую перезагрузку при запуске.

Windows 8 и более поздние

После нескольких неудачных попыток загрузить систему, мы увидим «Подготовка автоматического восстановления»:

Подготовка автоматического восстановления Windows

Затем «Диагностика компьютера»:

В открывшемся окне нажимаем по Дополнительные параметры:

Выбор дополнительных параметров восстановления Windows

Вместо перезагрузки мы увидим окно «Выбор действия» — нажимаем по Поиск и устранение неисправностей (Windows 10):

Выбираем диагностику Windows 10

или Диагностика (Windows 8):

Выбираем диагностику Windows 8

Затем по Дополнительные параметры:

И Параметры загрузки:

В открывшемся окне просто нажимаем по кнопке Перезагрузить:

Компьютер перезагрузится и откроется окно «Параметры загрузки». Выбираем Отключить автоматический перезапуск после сбоя (цифра 9):

Отключить автоматический перезапуск после сбоя

Windows 7 и более ранние системы

Нажимаем F8 после первой заставки при включении компьютера — в открывшемся меню выбираем Отключить автоматическую перезагрузку при отказе системы:

Отключить автоматическую перезагрузку при отказе системы

Дополнительно

Относительно автоматической перезагрузки необходимо знать следующие нюансы.

1. Отключение в БИОСе

Довольно часто, данную настройку пытаются найти в БИОС. На самом деле, автоматическая перезагрузка — функция операционной системы и отключить ее в БИОСе нельзя.

2. Компьютер перезагружается каждый час

Как правило, проблема связана с нарушением лицензионного соглашения. Необходимо активировать Windows.

3. Перезагрузки после обновления

При неудачном обновлении система может перестать работать. Необходимо попробовать запуститься в безопасном режиме или загрузиться с установочного диска и попробовать восстановить систему с использованием точки восстановления.

4. После установки драйвера

Установка или обновление драйвера также может стать причиной критической ошибки. Если компьютер начал постоянно перезагружаться после установки драйвера, необходимо загрузиться в безопасном режиме и откатить драйвер.

По умолчанию в настройках Windows включена автоматическая перезагрузка ОС при возникновении стоп ошибки (BSOD). При этом Windows создает минидамп памяти, который можно в дальнейшем проанализировать с помощью WinDbg или BlueScreenView. Но кроме дампа памяти на BSOD экране отображается код ошибки, которого иногда бывает достаточно для определения проблемы. Но пользователь не всегда успевает увидеть код ошибки на BSOD экране, т.к. компьютер уходит в перезагрузку слишком быстро. В этой статье мы рассмотрим, как включить/отключить функцию автоматической перезагрузки при отказе системы (Automatic Restart on System Failure) в Windows 10 и 11.

Включить/отключить автоматическую перезагрузку Windows при сбоях можно несколькими способами

  • Через графический интерфейс свойств компьютера. Выполните команду
    SystemPropertiesAdvanced.exe
    -> Advanced -> снимите чекбокс Automatic Restart (Выполнить автоматическую перезагрузку) в секции System Failure (Отказ системы).

    отключить автоматическую перезагрузку в параметрах восстановления Windows

  • Можно отлючить автоматическую перезагрузку через ключ реестра AutoReboot (типа REG_DWORD) в ветке HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl. Можно изменить значение этого ключа вручную через
    regedit
    или из командной строки. Чтобы отключить перезагрузку компьютера, измените значение параметра на
    0
    :
    reg add «HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl» /v AutoReboot /t REG_DWORD /d 0 /f

    параметр реестра AutoReboot в ветке CrashControl

  • Также для отключения перезагрузки Windows при сбоях можно воспользоваться утилитой командной строки wmic:
    wmic RecoverOS set AutoReboot = False

    wmic RecoverOS set AutoReboot false - отключить автоматическоую перезагрузку Windows при отказе системы

    Для включения авто-перезагрузки при BSOD, используйте:

    wmic RecoverOS set AutoReboot = True

Если вам нужно отключить автоматическую перезагрузку только один раз (при следующей загрузке компьютера), перезагрузите компьютер в режиме расширенных параметров загрузки (командой shutdown:
shutdown /r /o /f /t 00
, либо с зажатой клавишей
Shift
щелкните по кнопке перезагрузки в стартовом меню Windows).

Выберите Troubleshoot.

Troubleshoot режима загруки Windows 10

Затем выберите Advanced options -> Startup Settings -> Restart.

расширенные опции загрузки Windows

После перезагрузки компьютера в режиме Startup Settings нажмите клавишу F9 или 9 для загрузки компьютера с опцией Disable automatic restart after failure.

Отключить автоматический перезапуск после сбоя

Если Windows бесконечно перезагружается и не позволяет внести изменения в свои настройки, вы можете аналогичным образом однократно отключить автоматическую перезагрузку. Для этого достаточно трижды прервать загрузку Windows по питанию.

В результате Windows попытается загрузиться с образа восстановления WinRE в режиме автоматического восстановления (Preparing Automatic Repair).

В этом режиме также перейдите в Advanced options -> Startup Settings -> Restart -> F9 для загрузки Windows с отключенной перезагрузкой при сбоях.

WinRE автоматическое восстановление Windows

Если вам нужно отключить перезагрузку при сбоях для установленного образа Windows в офлайн режиме, нужно загрузится с установочного диска Windows и отредактировать файл реестра
..\Windows\System32\Config\System
. Изменив значение параметра
AutoReboot
в ветке
HKLM\SYSTEM\CurrentControlSet\Control\CrashControl
на
0
и сохраните файл реестра на диск.

Пример офлайн редактирования реестра есть в статье “Компьютер неожиданно перезагрузился, или возникла непредвиденная ошибка. Невозможно продолжить установку Windows”.

BSOD_banner.png

This tutorial will show you different ways on how to enable or disable automatically restart computer on a BSOD system failure in Windows 11.

A BSOD (blue screen of death) error (also called a stop error) can occur if a problem causes your PC to shut down or restart unexpectedly (aka: crash). When you experience this type of error, you won’t be able to see things like the Start menu or the taskbar on the screen when your PC is turned on. Instead you might see a blue screen with a message that your PC ran into a problem and needs to restart.

You must be signed in as an administrator to enable or disable BSOD automatic restart.

Contents

  • Option One: Enable or Disable BSOD Automatic Restart in Advanced System Settings
  • Option Two: Enable or Disable BSOD Automatic Restart using command in Windows Terminal
  • Option Three: Enable or Disable BSOD Automatic Restart using REG file
  • Option Four: Temporarily Disable BSOD Automatic Restart in Advanced Startup at Boot

EXAMPLE: BSOD

BSOD.png

Option One

Enable or Disable BSOD Automatic Restart in Advanced System Settings

1 Open Settings (Win+I).

2 Click/tap on System on the left side, and click/tap on About on the right side. (see screenshot below)

BSOD_auto_restart_Settings-1.png

3 Click/tap on the Advanced system settings link, and close Settings. (see screenshot below)

BSOD_auto_restart_Settings-2.png

4 In the Advanced tab of System Properties (SystemPropertiesAdvanced.exe), click/tap on the Settings button under Startup and Recovery. (see screenshot below)

BSOD_auto_restart_Settings-3.png

5 Check (enable — default) or uncheck Automatically restart for what you want, and click/tap on OK. (see screenshot below)

BSOD_auto_restart_Settings-4.png

6 Click/tap on OK. (see screenshot below)

BSOD_auto_restart_Settings-5.png

Option Two

Enable or Disable BSOD Automatic Restart using command in Windows Terminal

1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Copy and paste the command below you want to use into Windows Terminal (Admin), and press Enter. (see screenshots below)

(Enable BSOD automatic restart — default)​

wmic RecoverOS set AutoReboot = True

OR​

(Disable BSOD automatic restart)​

wmic RecoverOS set AutoReboot = False

3 You can now close Windows Terminal (Admin), if you like.

BSOD_auto_restart_command-1.png

BSOD_auto_restart_command-2.png

Option Three

Enable or Disable BSOD Automatic Restart using REG file

1 Do step 2 (enable) or step 3 (disable) below for what you want.

2 Enable BSOD Automatic Restart

This is the default setting.

A) Click/tap on the Download button below to download the file below, and go to step 4 below.​

Enable_BSOD_automatic_restart.reg

(Contents of REG file for reference)

Code:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
"AutoReboot"=dword:00000001

3 Disable BSOD Automatic Restart

A) Click/tap on the Download button below to download the file below, and go to step 4 below.​

Disable_BSOD_automatic_restart.reg

(Contents of REG file for reference)

Code:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
"AutoReboot"=dword:00000000

4 Save the .reg file to your desktop.

5 Double click/tap on the downloaded .reg file to merge it.

6 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.

7 You can now delete the downloaded .reg file if you like.

Option Four

Temporarily Disable BSOD Automatic Restart in Advanced Startup at Boot

This option will only temporarily disable BSOD automatic restart until the next time the computer is restarted.

1 Boot to Advanced Startup (WinRE).

2 Click/tap on Troubleshoot. (see screenshot below)

BSOD_auto_restart_Advanced_Startup-1.png

3 Click/tap on Advanced options. (see screenshot below)

BSOD_auto_restart_Advanced_Startup-2.png

4 Click/tap on Startup Settings. (see screenshot below)

BSOD_auto_restart_Advanced_Startup-3.png

5 Click/tap on the Restart button. (see screenshot below)

BSOD_auto_restart_Advanced_Startup-4.png

6 When the PC has finished restarting to Startup Settings, press either the F9 or 9 key to select Disable automatic restart after failure. (see screenshot below)

BSOD_auto_restart_Advanced_Startup-5.png

7 The PC will now boot to Windows 11 with BSOD automatic restart disabled until the next time the computer is restarted.

That’s it,
Shawn Brink


  • Disable_BSOD_automatic_restart.reg

    Disable_BSOD_automatic_restart.reg

    610 bytes

    · Views: 342


  • Enable_BSOD_automatic_restart.reg

    Enable_BSOD_automatic_restart.reg

    606 bytes

    · Views: 345

Disable Automatic Restart on System Failure in Windows 10: Blue Screen of Death (BSOD) error occurs when the system fails to start causing your PC to restart unexpectedly or crashing. In short, after a system failure occurs, Windows 10 automatically restart your PC to recover from the crash. Most of the time a simple restart is able to recover your system but in some cases, your PC might get into a restart loop. That’s why you need to disable automatic restart on system failure in Windows 10 in order to recover from the restart loop.

Disable Automatic Restart on System Failure in Windows 10

Also, another problem is that the BSOD error is only displayed for a few fractions of seconds, in which it is impossible to note down the error code or understand the nature of the error. If the automatic restart if disabled it will you give you more time on the BSOD screen. Anyway without wasting any time let’s see How to Disable Automatic Restart on System Failure in Windows 10 with the help of the below-listed tutorial.

Table of Contents

Make sure to create a restore point just in case something goes wrong.

Method 1: Disable Automatic Restart on System Failure using Startup and Recovery Settings

1.Press Windows Key + R then type sysdm.cpl and hit Enter to open System Properties.

2.Now switch to the Advanced tab then click on “Settings” under Startup and Recovery.

system properties advanced startup and recovery settings

3.Make sure to uncheck “Automatically Restart” under System failure.

Under System failure uncheck Automatically restart

4.Click OK then click Apply followed by OK.

5.Reboot your PC to save changes.

Method 2: Disable Automatic Restart on System Failure in Windows 10 using Registry Editor

1.Press Windows Key + R then type regedit and hit Enter.

2.Navigate to the following registry key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl

3.Make sure to select CrashControl then in the right window pane double-click on AutoReboot.

Select CrashControl then in the right window pane double-click on AutoReboo

4.Now under AutoReboot Value data field type 0 (zero) and click OK.

5.Close everything and restart your PC.

Method 3: Disable Automatic Restart on System Failure using Command Prompt

1.Press Windows Key + X then select Command Prompt (Admin).

2.Type the following command into cmd and hit Enter:

Disable Automatic Restart on System Failure: wmic recoveros set AutoReboot = False
Enable Automatic Restart on System Failure: wmic Recoveros set AutoReboot = True

Enable or Disable Automatic Restart on System Failure in Command Prompt

3.Close everything and reboot your PC to save changes.

Method 4: Disable Automatic Restart on System Failure in Windows 10 using Advanced Startup Options

1.Boot to Advanced Startup Options using any one of the listed methods here.

2.Now on Choose an option screen click on Troubleshoot.

Choose an option at windows 10 advanced boot menu

3.On Troubleshoot screen click on “Advanced options“.

troubleshoot from choose an option

4.Now click “Startup Settings” icon on the Advanced options screen.

Click Startup Settings icon on the Advanced options screen

5.Click on Restart button and wait for PC to restart.

Startup settings

6.The system will boot to Startup Settings after the restart, simply press F9 or 9 key to select Disable automatic restart after failure.

Press F9 or 9 key to select Disable automatic restart after failure

7.Now your PC will restart, saving the above changes.

Recommended:

  • 5 Ways to Adjust Screen Brightness in Windows 10
    How to Change Default Operating System in Windows 10
  • Change Time to Display List of Operating Systems at Startup in Windows 10
  • How to Access Advanced Startup Options in Windows 10

That’s it, you successfully learned How to Disable Automatic Restart on System Failure in Windows 10 but if you still have any questions regarding this tutorial then feel free to ask them in the comment’s section.

When the Windows operating system encounters a critical error, the system throws a Blue Screen of Death (BSOD). This Blue Screen then throws in the error code on the bottom left region and then reboots the computer. This error is mainly caused because some internal system processes or files have stopped working as expected. Sometimes, DLL or Dynamic Link Library files have malfunctioned or any critical process inside of the system has returned an error. In this case, the system often leaves and closes the task that the user is currently performing forcibly. This implies a greater loss of unsaved work by the user on their computer. Hence, to fix this, we need to disable Automatic Restarts.

First of all, we would recommend you create a System Restore point. Because we will be playing with registry files and modifying some really critical Windows settings. Having done this, we will continue on our quest of disabling Automatic Restart on System Failure in Windows 11/10.

1] Using Startup and Recovery Settings

First of all, start by hitting the WIN + R combination to launch the Run utility.

Now, type in sysdm.cpl and then hit Enter to launch System Properties. Next, click on the tab called Advanced and under the section labeled as Startup and Recovery, click on the button that says Settings.

How to disable Automatic Restart on System Failure in Windows 10

A new pop-up window will now open. Under the section called System failure, uncheck the option labeled as Automatically restart.

Now, click on OK then on Apply and then again on OK.

Reboot your computer now for the changes to take an effect.

2] Using Command Prompt with Admin Level Privileges

Start by pressing WIN + X button combo or right-click on the Start button and click on Command Prompt (Admin) or just search for cmd in the search box, right-click on the Command Prompt icon and click on Run as Administrator.

Now, type in the following command to disable Automatic Restart on System Failure:

Disable Automatic Restart on System Failure: wmic recoveros set AutoReboot = False

Or, you can type in the following command to enable Automatic Restart on System Failure:

Disable Automatic Restart on System Failure: wmic recoveros set AutoReboot = True

Type in exit and hit Enter to exit the Command Prompt.

Reboot your computer for the changes to take an effect.

3] Using the Registry Editor

First of all, start by hitting the WINKEY + R button combination to launch the Run utility.

Now type in regedit and hit Enter.

You can also search for Registry Editor in th Search box and select the appropriate option.

Click on Yes for the UAC prompt that you get.

Now, navigate to the following key location inside of the Registry Editor,

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl

Select CrashControl in the left pane and then double-click on AutoReboot on the right pane.

Now, a new mini-window will pop-up. Inside the Value Data field, enter the value as 0 (ZERO). Click on OK.

Reboot your computer for the changes to take effect.

4] Using Advanced Startup Options

Start by booting in the Advanced Startup Options.

Now, after you are booted in the Advanced Startup Options, click on Troubleshoot.

Then out of the three options you get, click on Advanced Options.

Automatic Repair couldn't repair your PC

After that, click on Startup Settings. Then, click on the button labeled as Restart.

After the restart, the system will boot into Startup Settings, just hit the F9 key or key in order to select the option to Disable Automatic Restart after failure.

I hope the post helped you.

Read: How to disable Automatic Restart after Windows Update.

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Найдено потенциально нежелательное приложение как отключить windows 11
  • Не работает определение местоположения в windows 10
  • Управление вентиляторами компьютера windows 10 asus
  • Как сейчас обновиться до windows 11 в россии
  • C windows syswow64 hsmgr exe