-3

I have a application which is a keyboard on the screen, I need to kill it via taskkill but it is impossible to kill. How do you kill it?

enter image description here

I tried all combinations but it won't just get killed?

enter image description here

aschipfl
  • 33,626
  • 12
  • 54
  • 99
  • 2
    Possible duplicate of [Taskkill /f doesnt kill a process](http://stackoverflow.com/questions/12528963/taskkill-f-doesnt-kill-a-process) – Joseph Young Dec 19 '16 at 18:36
  • 2
    Use `tasklist /v` to see what you need to put. –  Dec 19 '16 at 18:37
  • 1
    The error message says that it couldn't find the correct process to terminate, you'll need to somehow improve the search criteria. Or, could be a privileges issue. Are you running the script as elevated? – Chris O Dec 19 '16 at 18:38
  • Following Answer only worked, all the rest does not work at all. –  Dec 19 '16 at 18:51
  • How to to run `wmic process where name='TouchIt.exe' delete` from scheduler? when i am running this from scheduler then it fails, but when i manually run this then only works. Does anyone know how you can run this from scheduler and be sure it does exactly like it was manually applied? –  Dec 19 '16 at 19:00
  • Seems like it would be easier to copy and paste the from the cmd prompt then posting an image. – Squashman Dec 19 '16 at 20:18

1 Answers1

1

I was able to kill the process using wmic using hte following command.

C:\>wmic process where name='TouchIt.exe' delete
2ps
  • 15,099
  • 2
  • 27
  • 47