About 516,000 results
Open links in new tab
  1. How do I kill a processes running a given executable?

    Mar 5, 2021 · I want to kill a job. First, I need it's process Id, so I execute: get-process And I get a boatload of processes. OK, I just want one particular process, so I use: get-process | select …

  2. Program behavior when kill -HUP is recieved? - Unix & Linux Stack …

    Is there a way to find out what will program do when it receives kill signal HUP? Without simply running the command ofc :D For example, killall -HUP pppd will restart pppd killall -HUP firefox ...

  3. How to make a kill command to kill a specific player? - Stack …

    How to make a kill command to kill a specific player? Asked 10 years, 3 months ago Modified 1 year, 5 months ago Viewed 49k times

  4. How to kill all browser windows and drivers before test execution …

    The question I want to kill all previous browser shouldn't arise at all when following the Best Practices with Selenium. While automating through Selenium as per the best practices you …

  5. python - Kill a running subprocess call - Stack Overflow

    Instead of sleep(2) + poll you can use wait(2) with a timeout, which won't waste two seconds if the process exits quickly. Additionally, you can use process.terminate and process.kill instead of …

  6. SQL Server: Kill Process using Stored Procedure

    Dec 8, 2009 · Can you define what you mean with "kill processes"? I don't think it is possible to kill regular windows processes from a stored procedure (and that would be rather odd anyway, …

  7. shell - Kill a Docker Container - Stack Overflow

    Jun 25, 2018 · docker kill: sending a signal to stop a running container. It is equivalent to running docker stop, but with a default signal of SIGKILL, which forcefully terminates the container.

  8. kill -3 or jstack : What is the difference? - Stack Overflow

    Apr 4, 2018 · The jstack command can get a thread dump of a program running on a remote machine, and it also works on Windows. kill -3 only works on local programs, and on Windows …

  9. sql server - close/kill transaction - Stack Overflow

    I have this open transaction, according to DBCC OPENTRAN: Oldest active transaction: SPID (server process ID) : 54 UID (user ID) : -1 Name : UPDATE LSN ...

  10. How to stop/kill docker compose project? - Stack Overflow

    Mar 20, 2025 · I'd like to kill/stop/down the whole compose project without having to kill or type each individual containers. I get the the project's name using docker compose ls.