About 394,000 results
Open links in new tab
  1. command line - How can I force stop a program without using the …

    Mar 18, 2017 · I looked into how to end tasks from command prompt, but the directions don't make sense. schtasks /end requires a task name argument that seems to take a path, but I have no way of …

  2. What is the shortcut command to kill a process in a Windows …

    27 Problem: I have a process in a Windows command window which cannot be killed. I tried taskkill and all the shortcuts in the post Linux-like Ctrl + C (keyboard interrupt) for the Windows command line It …

  3. Exit program in Windows command prompt - Super User

    Ctrl + C will stop a program running from the command prompt, similar to other operating systems. To force kill a process from the command prompt, use the following command: taskkill /F /IM …

  4. Any way to write a Windows .bat file to kill processes?

    You can do this with ' taskkill '. With the /IM parameter, you can specify image names. Example: taskkill /im somecorporateprocess.exe You can also do this to ' force ' kill: Example: taskkill /f /im …

  5. Close programs from the command line (Windows) - Super User

    Mar 12, 2014 · What is the proper way to close/exit programs from command line, similar to pressing the "X" close button in the corner of the window? Im trying to close chrome under 3 different versions of …

  6. Really killing a process in Windows - Stack Overflow

    Sep 8, 2008 · 6 setup an AT command to run task manager or process explorer as SYSTEM. AT 12:34 /interactive "C:/procexp.exe" If process explorer was in your root C drive then this would open it as …

  7. How to end a task from a batch file which is not a process?

    I have a batch file which is launching a script (python one). I'm looking for a windows command which will terminate the script. taskkill is working in processes and there is no unique process here...

  8. windows - Taskkill /f doesn't kill a process - Stack Overflow

    Sep 21, 2012 · In my case, I had some chrome.exe processes for which task manager's 'End Task' was working, but neither taskkill /F /T /PID <pid> nor powershell's kill -id <pid> worked (even with both …

  9. Stop all instances of Node.js server - Stack Overflow

    5 If you are using Windows, follow this: Open task manager, look for this process: Then just right click and "End task" it. That's it, now all the npm commands run form the start.

  10. terminal - 'End Process' equivalent on linux - Super User

    Jul 30, 2009 · It is like task manager, and has a function to end process, but sometimes this makes everything freeze and it locks up. Is there any way to fully end a process with command line faster?