Unable to disable / stop Windows GbpSv service

I am trying to disable a Windows process named "GbpSv" and although my user is an administrator, all commands are disabled.

Example:

C:\Users\Andre>sc config "GbpSv" start=disabled
[SC] OpenService FAILED 5:
Access is denied.

C:\Users\Andre>net stop "GbpSv"
The requested pause, continue, or stop is not valid for this service

      

enter image description here

I am using Windows 8.1.

Attempting to kill the process:

C:\Program Files (x86)\GbPlugin>tasklist | FindStr Gbp
GbpSv.exe                      104 Services                   0     16.520 K
GbpSv.exe                     5324 Console                    1     13.448 K

C:\Program Files (x86)\GbPlugin>taskkill /pid 104
ERROR: The process with PID 104 could not be terminated.
Reason: This process can only be terminated forcefully (with /F option).

C:\Program Files (x86)\GbPlugin>taskkill /f /pid 104
ERROR: The process with PID 104 could not be terminated.
Reason: Access is denied.

      

+3


source to share


1 answer


You can't just stop it. You have to completely clear it from your machine because this is a security plugin that some banks provide to ensure you access their online banking services. Therefore, it is very well protected against malicious deletion by rogue apps.

You can remove it here:

First you will need to delete the Program Files \ Gbplugin folder. I removed it by booting into Linux (you can use the Live CD for Ubuntu), installing the Windows partition and deleting it. Logging in as Windows Administrator or in Safe Mode should do the trick too.

But in order to get rid of the Gpb, Gbplugin and Warsaw service (its companion application, written "Gas Tecnologia"), you will have to delete all your Regedit entries. Just open regedit, press ctrl + f, search for "Gpb", "Gbplugin", "Gpbsv" and "Warsaw" and delete the entries. Be careful not to delete unrelated items!



You can remove Warsaw from your control panel. Make sure you delete the DLLs left in your local folder (you can easily find them using Windows Explorer).

On the next reboot, the service should be disabled.

If you don't uninstall it and delete the Regedit entries mentioned above, it will constantly reinstall Gpb over and over again. So don't leave a stone unturned.

Note. To restart in safe mode using Windows 8.1, hold down the Shift key while selecting the restart option from Power Options.

+2


source







All Articles