2

I am trying to send a Ctrl+C signal to a powershell process on windows. I tried Taskkill, Kill commands in Windows but it is not working. I also tried to use TaskManager but it is not doing the expected. Also tried the " SendSignal" app mentioned on this thread, but that app is not actually sending the signal, the process is still running after executing it.

Can someone please help.

Thanks,

Community
  • 1
  • 1
user167617
  • 49
  • 2
  • 3
  • Show what you wrote, in PowerShell, when using `taskkill`, please. You're asking how to properly kill a process, it seems... but you've gone down a path (sending `Ctrl+C`) which isn't going to work efficiently or easily for you in any way. – gravity Nov 10 '16 at 19:58
  • Possible duplicate of [Kill process by ParentProcessID](http://stackoverflow.com/questions/33891243/kill-process-by-parentprocessid) – gravity Nov 10 '16 at 19:59

1 Answers1

1

Ctrl+Shift+C seems to do the trick, though I sometimes have to do it a few times to get the SIGINT to take.

Marian Nasry
  • 821
  • 9
  • 22
Shawn
  • 11
  • 1