Yes yes, I REALLY want to terminate that process and I am very sure about it too, ty.

  • @[email protected]
    link
    fedilink
    English
    15 hours ago

    Never used kill -9. What’s the difference between that and taskkill. I usually used taskkill /pid processiwanttokill.exe /f

    • @mkwt
      link
      14 hours ago

      Kill -9 is a command on Unix and Linux to send signal 9 (SIGKILL) to a process. That’s the version of kill that is the most reliable and has immediate effect.

      Taskkill is a Windows command line program. I believe that taskkill /f uses the TerminateProcess() API. This is more forceful than the End Task button on the Task Manager. There is a different End Process button on the Task Manager that does use TerminateProcess().