1

There are some processes wich I start, they freeze (don't even get to the GUI), and then I'm unable to kill them. These are usually programs I wrote or compiled.

When I try to kill them via Task Manager, End Process button doesn't do anything, although neither does it throw some error, it acts as if everything was OK, but doesn't kill the process.

I tried to kill them from command prompt, this is the result:

C:\Users\icguy>tasklist | findstr SubShifter.exe
SubShifter.exe                6280 Console                    1        120 K
SubShifter.exe                7000 Console                    1        120 K
SubShifter.exe                5276 Console                    1        128 K

C:\Users\icguy>taskkill /im subshifter.exe /F
SUCCESS: The process "SubShifter.exe" with PID 6280 has been terminated.
SUCCESS: The process "SubShifter.exe" with PID 7000 has been terminated.
SUCCESS: The process "SubShifter.exe" with PID 5276 has been terminated.

C:\Users\icguy>tasklist | findstr SubShifter.exe
SubShifter.exe                6280 Console                    1        120 K
SubShifter.exe                7000 Console                    1        120 K
SubShifter.exe                5276 Console                    1        128 K

I'm not feeling like rebooting everytime I encounter this problem. Solution, anyone?

1 Answer 1

3

Just after posting this, I've found a solution to the problem. I disabled Avast (my antivirus for anyone not knowing), and the processes run just fine.

2
  • Hmm. I have to say this antivirus detects a lot of false positives for me
    – Tomer
    Commented Dec 27, 2015 at 20:30
  • I know, right? And the funny thing is that it worked just fine for years.
    – icguy
    Commented Dec 29, 2015 at 14:32

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .