I've ran into a few cases where powershell ISE will freeze when you try to kill a process with Ctrl+C. I can still move my cursor around the console but the status is stuck on "Stopping".
This has happened for several commands but one particular command I've noticed this consistently happening for is
mvn jasmine:bdd
This command runs a maven plugin which starts a jetty server. I can stop this with Ctrl+C from Powershell Console but not from Powershell ISE. Could this be related to the fact that Powershell ISE can't run interactive commands?
Right now my workaround is to just "start" maven in another process. Anyone else run into a similar problem?
Thanks