Files
management-scripts/Fix-ConfigureRebootIntoSafeMode.bat
T
2023-12-15 13:07:33 -05:00

14 lines
287 B
Batchfile

@echo off
setlocal
cls
call :configure-service Syncro
call :configure-service SyncroLive
call :configure-service SyncroOvermind
call :configure-service SplashtopRemoteService
goto :EOF
:configure-service
reg add "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\%*" /f
goto :EOF