diff --git a/Fix-RebootIntoSafeMode.bat b/Fix-RebootIntoSafeMode.bat index c4b19ae..124a8ad 100644 --- a/Fix-RebootIntoSafeMode.bat +++ b/Fix-RebootIntoSafeMode.bat @@ -14,7 +14,7 @@ call :configure-service SplashtopRemoteService :schedule-normal-reboot call :reset-errorlevel echo Configuring system to reboot into Normal Mode at next reboot -reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Runonce" /v "*RestartNormalMode" /t REG_SZ /d "%SystemRoot%\System32\bcdedit.exe /deletevalue {current} safeboot" /f > nul 2>&1 +reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Runonce" /v "*RestartNormalMode" /t REG_SZ /d "%SystemRoot%\System32\bcdedit.exe /deletevalue {default} safeboot" /f > nul 2>&1 if %ERRORLEVEL% GTR 0 ( set /a REBOOT=%REBOOT%+1 echo ERROR: could not configure reboot into normal mode @@ -22,7 +22,7 @@ if %ERRORLEVEL% GTR 0 ( :configure-reboot-safemodewithnetworking call :reset-errorlevel -"%SystemRoot%\System32\bcdedit.exe" /set {current} safeboot network +"%SystemRoot%\System32\bcdedit.exe" /set {default} safeboot network if %ERRORLEVEL% GTR 0 ( set /a REBOOT=%REBOOT%+1 echo ERROR: could not restart into Safe Mode with Networking