I have a hidden process started by a 3rd party vendor software running on my machine that I am unable to stop or kill it using the following methods:
- Use the Windows Service commend line:
sc stop "Process_Name"
orsc config "Process_Name" start= disabled
(whereProcess_Name
is the string name of the hidden process I am trying to stop. Notice that I started the command window with the administrator rights, yet still unable to stop it; - Use the Services.msc tool trying to change it's start type from automatic to manual or stoped;
- Use the ProcExplorer tool (an advanced Task Manager tool) in the SystemInternals tool suite (http://technet.microsoft.com/en-us/sysinternals/default.aspx), even with running it in the administrator mode;
I get access denied error message when trying to kill the process using these methods. My login account has the administrator rights, although I am not logging in with the administrator account name. The other thing I am unable to do is to start the Windows in Safe Mode to prevent it from starting, because I don't have the bitlocker code of the machine, which is needed to start the Windows in Safe Mode.
So my question is, with my current user rights (admin account rights) but no Safe Mode or admin account log-in ability, is there any way for me to stop such running Windows process, or prevent it from starting at the Windows start up? Has anyone run into similar problem and found a way to do it?