changed from current to default boot option

This commit is contained in:
2024-04-22 11:31:16 -04:00
parent 92b603c312
commit 7c95440fd4
+2 -2
View File
@@ -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