Files
management-scripts/Fix-ConfigureRebootIntoSafeMode.bat
T

12 lines
217 B
Batchfile
Raw Normal View History

2022-07-14 13:25:18 -04:00
@echo off
setlocal
cls
call :configure-service AteraAgent
call :configure-service SplashtopRemoteService
goto :EOF
:configure-service
reg add "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\%*" /f
goto :EOF