Jack.is » Tech support » Tech tips » 1084
Error 1084: The service cannot be started in safe mode
- Obtain the name of the service. You can find it in the Service Name field of the service's Properties in services.msc.
- Insert the name of the service into the commands below:
- Open command prompt and do:
REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\SERVICE_NAME_HERE" /VE /T REG_SZ /F /D "Service"
- Or you can walk through regedit to HKLM\SYSTEM\CurrentControlSet\Control\SafeBoot\Network and create new key named SERVICE_NAME_HERE. Add new REG_SZ value with data "Service".
- Start the service.