Files
management-scripts/Fix-ConfigureRebootIntoSafeMode.bat
T

14 lines
287 B
Batchfile
Raw Normal View History

2022-07-14 13:25:18 -04:00
@echo off
setlocal
cls
2023-12-15 13:07:33 -05:00
call :configure-service Syncro
call :configure-service SyncroLive
call :configure-service SyncroOvermind
2022-07-14 13:25:18 -04:00
call :configure-service SplashtopRemoteService
goto :EOF
:configure-service
reg add "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\%*" /f
goto :EOF