Permission to run services on windows

0

I'm trying to start a "Base Filtering Engine Service" windows service.

Following the tutorial of a website I was instructed to:

1- Go to HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ services \ BFE

2- Right click permission

3- Click add and type "all"

4- Select Full Control

However when trying to start the BFE service in services.msc I get the following error.

Erro 5 acesso negado
    
asked by anonymous 06.07.2015 / 23:47

1 answer

0

First check the key's permissions on where you have guidelines to edit the key permissions if necessary !!

Then try running the command prompt, right-click: "run as administrator"

Check which command applies in your tutorial, Note: Link info :

:: Automatic ::

reg add "HKLM\SYSTEM\CurrentControlSet\services\BFE" /v Start /t REG_DWORD /d 2 /f

:: Manual ::

reg add "HKLM\SYSTEM\CurrentControlSet\services\BFE" /v Start /t REG_DWORD /d 3 /f

:: Disabled ::

reg add "HKLM\SYSTEM\CurrentControlSet\services\BFE" /v Start /t REG_DWORD /d 4 /f

:: Automatic (Delayed Start) ::

reg add "HKLM\SYSTEM\CurrentControlSet\services\BFE" /v Start /t REG_DWORD /d 2 /f
    
16.12.2018 / 05:17